ifw-daq  1.0.0
IFW Data Acquisition modules
config.hpp
Go to the documentation of this file.
1 #ifndef OCF_DAQ_CONFIG_HPP
2 #define OCF_DAQ_CONFIG_HPP
3 
4 #define BOOST_THREAD_VERSION 4
5 #define BOOST_THREAD_USES_CHRONO
6 #define BOOST_THREAD_PROVIDES_FUTURE
7 #define BOOST_THREAD_PROVIDES_FUTURE_CONTINUATION
8 #define BOOST_THREAD_PROVIDES_FUTURE_WHEN_ALL_WHEN_ANY
9 #define BOOST_THREAD_PROVIDES_EXECUTORS
10 #define BOOST_THREAD_USES_MOVE
11 
12 #ifdef UNIT_TEST
13 // gmock 1.8 does not support noexcept
14 #define DAQ_NOEXCEPT
15 #else
16 #define DAQ_NOEXCEPT noexcept
17 #endif
18 #endif // #ifndef OCF_DAQ_CONFIG_HPP