voxelTerrain
 All Classes Functions Variables Typedefs Enumerations Pages
pair.hpp
1 #ifndef PAIR_HPP
2 #define PAIR_HPP
3 
4 #include <utility>
5 
6 namespace blub
7 {
8  template <class A, class B>
9  class pair : public std::pair<A, B>
10  {
11  public:
12  pair()
13  : std::pair<A, B>()
14  {;}
15  pair(const A &a, const B &b)
16  : std::pair<A, B>(a, b)
17  {;}
18  pair(const std::pair<A, B> &copy)
19  : std::pair<A, B>(copy)
20  {;}
21  };
22 }
23 
24 #endif // PAIR_HPP
Definition: pair.hpp:9
Definition: deadlineTimer.hpp:10