#pragma implementation "thread.h"
#endif
+// this is here to regen the precompiled header in the ide compile otherwise the
+// compiler crashes in vc5 (nfi why)
+// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#if defined(__BORLANDC__)
p_internal->prio = prio;
}
-int wxThread::GetPriority()
+int wxThread::GetPriority() const
{
return p_internal->prio;
}
return (unsigned long)p_internal->tid;
}
-bool wxThread::IsMain() const
+bool wxThread::IsMain()
{
return (GetCurrentThread() == p_mainid);
}