voxelTerrain
 All Classes Functions Variables Typedefs Enumerations Pages
bind.hpp
1 #ifndef BLUB_CORE_BIND_HPP
2 #define BLUB_CORE_BIND_HPP
3 
4 #include <boost/config.hpp>
5 
6 #ifdef BOOST_NO_CXX11_HDR_FUNCTIONAL
7 # include <boost/bind.hpp>
8 # include <boost/function.hpp>
9 #else
10 # include <functional>
11 #endif
12 
13 
14 namespace blub
15 {
16 
17 
18 #ifdef BOOST_NO_CXX11_HDR_FUNCTIONAL
19 using boost::bind;
20 namespace placeholders {
21  using ::_1;
22  using ::_2;
23 }
24 #else
25 using std::bind;
26 namespace placeholders = std::placeholders;
27 #endif
28 
29 
30 }
31 
32 
33 
34 #endif // BLUB_CORE_BIND_HPP
Definition: deadlineTimer.hpp:10