25 #ifndef STTCLCX11THREAD_H_
26 #define STTCLCX11THREAD_H_
28 #if defined(STTCL_CX11_THREADS) or defined(STTCL_CX11_IMPL)
43 typedef std::thread ThreadNativeType;
45 typedef void* (*ThreadMethodPtr)(
void*);
47 SttclCx11Thread(ThreadMethodPtr argThreadMethod);
48 virtual ~SttclCx11Thread();
53 static bool isSelf(
const SttclCx11Thread& otherThread);
56 ThreadMethodPtr threadMethod;
57 ThreadNativeType thread;