Added platform libs

This commit is contained in:
Anonymous
2014-01-16 07:25:50 -07:00
parent 202d7d1de3
commit 77c2b5f6bc
92 changed files with 16139 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef BASE_THREAD_H
#define BASE_THREAD_H
#ifdef WIN32
#include "win32/Thread.h"
#elif linux
#include "linux/Thread.h"
#elif sparc
#include "solaris/Thread.h"
#else
#error /Base/Thread.h: Undefine platform type
#endif
#endif // BASE_THREAD_H