aboutsummaryrefslogtreecommitdiff
path: root/week08/Exercise3.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'week08/Exercise3.hpp')
-rw-r--r--week08/Exercise3.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/week08/Exercise3.hpp b/week08/Exercise3.hpp
new file mode 100644
index 0000000..9b15db2
--- /dev/null
+++ b/week08/Exercise3.hpp
@@ -0,0 +1,5 @@
+template <class T, class P>
+struct Pair {
+ T left;
+ P right;
+};