summaryrefslogtreecommitdiff
path: root/src/user/include/cxx/structs/duple.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/include/cxx/structs/duple.h')
-rw-r--r--src/user/include/cxx/structs/duple.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/user/include/cxx/structs/duple.h b/src/user/include/cxx/structs/duple.h
new file mode 100644
index 0000000..874e4f6
--- /dev/null
+++ b/src/user/include/cxx/structs/duple.h
@@ -0,0 +1,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 \ No newline at end of file