aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/bfc/pair.h
blob: 2e9eaf0f0a463f9bd35a0c708e895ecb04b7da2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _PAIR_H
#define _PAIR_H

template <class A, class B>
class Pair {
public:
	Pair() {}
  Pair(A _a, B _b) : a(_a), b(_b) {}

  A a;
  B b;
};

#endif