Panda3D
 All Classes Functions Variables Enumerations
threadImpl.h
1 // Filename: threadImpl.h
2 // Created by: drose (09Aug02)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef THREADIMPL_H
16 #define THREADIMPL_H
17 
18 #include "pandabase.h"
19 #include "selectThreadImpl.h"
20 
21 #if defined(THREAD_DUMMY_IMPL)
22 
23 #include "threadDummyImpl.h"
24 typedef ThreadDummyImpl ThreadImpl;
25 
26 #elif defined(THREAD_SIMPLE_IMPL)
27 
28 #include "threadSimpleImpl.h"
29 typedef ThreadSimpleImpl ThreadImpl;
30 
31 #elif defined(THREAD_WIN32_IMPL)
32 
33 #include "threadWin32Impl.h"
34 typedef ThreadWin32Impl ThreadImpl;
35 
36 #elif defined(THREAD_POSIX_IMPL)
37 
38 #include "threadPosixImpl.h"
39 typedef ThreadPosixImpl ThreadImpl;
40 
41 #endif
42 
43 #endif