1 /*
2 * xmlBlaster/src/c++/util/thread/ThreadImpl.cpp
3 *
4 * Used to switch between the http://www.boost.org C++ multi threading library
5 * and http://omniorb.sourceforge.net/ omniORB omnithread C++ multi threading library (default)
6 * Add
7 * thread.impl = BOOST
8 * to your build.properties (or as command line switch) to force using boost
9 */
10 #ifdef BOOST
11 #include "ThreadImplBoost.cc"
12 #else // OMNITHREAD
13 #include "ThreadImplOmniOrb.cc"
14 #endif
syntax highlighted by Code2HTML, v. 0.9.1