|
@@ -61,6 +61,8 @@ public:
|
|
|
INLINE static bool is_threading_supported();
|
|
INLINE static bool is_threading_supported();
|
|
|
INLINE static void sleep(double seconds);
|
|
INLINE static void sleep(double seconds);
|
|
|
|
|
|
|
|
|
|
+ virtual void output(ostream &out) const;
|
|
|
|
|
+
|
|
|
private:
|
|
private:
|
|
|
bool _started;
|
|
bool _started;
|
|
|
string _name;
|
|
string _name;
|
|
@@ -82,6 +84,8 @@ private:
|
|
|
static TypeHandle _type_handle;
|
|
static TypeHandle _type_handle;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+INLINE ostream &operator << (ostream &out, const Thread &thread);
|
|
|
|
|
+
|
|
|
#include "thread.I"
|
|
#include "thread.I"
|
|
|
|
|
|
|
|
#endif
|
|
#endif
|