ML Reference
MeVis/Foundation/Sources/MLUtilities/mlThread.h
Go to the documentation of this file.
00001 // **InsertLicense** code
00002 //----------------------------------------------------------------------------------
00004 
00009 //----------------------------------------------------------------------------------
00010 #ifndef __mlThread_H
00011 #define __mlThread_H
00012 
00013 #ifndef __mlUtilsSystem_H
00014 #include "mlUtilsSystem.h"
00015 #endif
00016 
00017 #include "mlSystemWarningsDisable.h"
00018 #include <boost/thread.hpp>
00019 #include "mlSystemWarningsRestore.h"
00020 
00021 ML_UTILS_START_NAMESPACE
00022 
00023 typedef boost::thread Thread;
00024 
00025 ML_UTILS_END_NAMESPACE
00026 
00027 #endif // __mlThread_H
00028 
00029