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