summaryrefslogtreecommitdiff
path: root/src/user/include/cxx/structs/duple.h
blob: 0b23c92005eff7d887150c5ca8622e5e6d4ad48a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef STRUCTS_DUPLE_H
#define STRUCTS_DUPLE_H

template<class at, class bt>
class duple {
public:
  duple() : a(), b() {}
  duple(at a, bt b)
    : a(a), b(b) {}
  at a;
  bt b;
};

#endif