cgv
Loading...
Searching...
No Matches
thread.cxx
1#include "thread.h"
2
3#ifdef _WIN32
4#include <cgv/config/cpp_version.h>
5#ifdef CPP11
6#define USE_STD_THREAD
7#endif
8#else
9#define USE_STD_THREAD
10#endif
11
12#ifdef USE_STD_THREAD
13#include "thread_std_thread.h"
14#else
15#include "thread_pthread.h"
16#endif