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

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

#endif