util/thread/ThreadImpl.cpp

Go to the documentation of this file.
00001 /*
00002  * xmlBlaster/src/c++/util/thread/ThreadImpl.cpp
00003  *
00004  * Used to switch between the http://www.boost.org C++ multi threading library
00005  * and http://omniorb.sourceforge.net/ omniORB omnithread C++ multi threading library (default)
00006  * Add 
00007  *  thread.impl   = BOOST
00008  * to your build.properties (or as command line switch) to force using boost
00009  */
00010 #ifdef BOOST
00011 #include "ThreadImplBoost.cc"
00012 #else // OMNITHREAD
00013 #include "ThreadImplOmniOrb.cc"
00014 #endif
00015