voxelTerrain
Main Page
Classes
Files
Examples
File List
All
Classes
Functions
Variables
Typedefs
Enumerations
Pages
modules
core
source
blub
core
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> ©)
19
: std::pair<A, B>(copy)
20
{;}
21
};
22
}
23
24
#endif // PAIR_HPP
blub::pair
Definition:
pair.hpp:9
blub
Definition:
deadlineTimer.hpp:10
Generated on Sat Jan 31 2015 13:35:22 for voxelTerrain by
1.8.8