summaryrefslogtreecommitdiff
path: root/task_cell_graph/c++/dependency.hpp
blob: 5e78cb34120606865ac0ce3418a36debca2adb81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <forstio/codec/schema.hpp>

namespace kel {
namespace ops {
struct Write {};
struct Read {};
}

template<bool Write, bool Read>
struct operation {
};
}