1 /*-----------------------------------------------------------------------------
 2 Name:      ThreadImpl.h
 3 Project:   xmlBlaster.org
 4 Copyright: xmlBlaster.org, see xmlBlaster-LICENSE file
 5 Comment:   Encapsulates (and hides) threads
 6 ------------------------------------------------------------------------------*/
 7 
 8 #ifndef _UTIL_THREAD_THREAD_H
 9 #define _UTIL_THREAD_THREAD_H
10 
11 #include <util/thread/ThreadBase.h>
12 
13 /**
14  * This is a hack to solve the nameconflict between the org::xmlBlaster::util::thread::Mutex class
15  * and the typename Mutex in the boost library.
16  */
17 
18 namespace org { namespace xmlBlaster { namespace util { namespace thread {
19 
20 typedef MutexClass Mutex;
21 
22 }}}} // namespaces
23 
24 #endif


syntax highlighted by Code2HTML, v. 0.9.1