summaryrefslogtreecommitdiff
path: root/poc
diff options
context:
space:
mode:
Diffstat (limited to 'poc')
-rw-r--r--poc/component_generator/ops.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/poc/component_generator/ops.hpp b/poc/component_generator/ops.hpp
new file mode 100644
index 0000000..f4449d1
--- /dev/null
+++ b/poc/component_generator/ops.hpp
@@ -0,0 +1,13 @@
+#pragma once
+
+namespace kel {
+/**
+ * With this I technically could do code reduction in a cell step
+ */
+
+template<typename A, typename B>
+struct Add {};
+
+template<typename L, typename R>
+struct Multiply {};
+}