threadimpl.cpp
来自「java开源的企业总线.xmlBlaster」· C++ 代码 · 共 16 行
CPP
16 行
/* * xmlBlaster/src/c++/util/thread/ThreadImpl.cpp * * Used to switch between the http://www.boost.org C++ multi threading library * and http://omniorb.sourceforge.net/ omniORB omnithread C++ multi threading library (default) * Add * thread.impl = BOOST * to your build.properties (or as command line switch) to force using boost */#ifdef BOOST#include "ThreadImplBoost.cc"#else // OMNITHREAD#include "ThreadImplOmniOrb.cc"#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?