summaryrefslogtreecommitdiff
path: root/task_cell_graph/c++/dependency.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'task_cell_graph/c++/dependency.hpp')
-rw-r--r--task_cell_graph/c++/dependency.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/task_cell_graph/c++/dependency.hpp b/task_cell_graph/c++/dependency.hpp
new file mode 100644
index 0000000..5e78cb3
--- /dev/null
+++ b/task_cell_graph/c++/dependency.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#include <forstio/codec/schema.hpp>
+
+namespace kel {
+namespace ops {
+struct Write {};
+struct Read {};
+}
+
+template<bool Write, bool Read>
+struct operation {
+};
+}