voxelTerrain
 All Classes Functions Variables Typedefs Enumerations Pages
optional.hpp
1 #ifndef BLUB_CORE_OPTIONAL_HPP
2 #define BLUB_CORE_OPTIONAL_HPP
3 
4 #include <boost/optional.hpp>
5 
6 
7 namespace blub
8 {
9 
10 
11 template <class T>
12 using optional = boost::optional<T>;
13 
14 
15 }
16 
17 
18 #endif // BLUB_CORE_OPTIONAL_HPP
Definition: deadlineTimer.hpp:10