]> git.tdb.fi Git - libs/core.git/blob - source/core/thread_private.h
Move GetOpt exception handling to the .cpp file
[libs/core.git] / source / core / thread_private.h
1 #ifndef MSP_CORE_THREAD_PRIVATE_H_
2 #define MSP_CORE_THREAD_PRIVATE_H_
3
4 #include "thread_platform.h"
5
6 namespace Msp {
7
8 struct Thread::Private
9 {
10         ThreadHandle handle;
11
12         Private(): handle(0) { }
13
14         static ThreadReturn THREAD_CALL main_wrapper(void *);
15 };
16
17 } // namespace Msp
18
19 #endif