From 1011655d2ef76a0c0aa29dbbff091dab139198e3 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sat, 24 Oct 2020 16:32:18 +0200 Subject: Add FlowGraph --- flowgraph/graph.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 flowgraph/graph.h (limited to 'flowgraph/graph.h') diff --git a/flowgraph/graph.h b/flowgraph/graph.h new file mode 100644 index 0000000..265a3bd --- /dev/null +++ b/flowgraph/graph.h @@ -0,0 +1,20 @@ +#pragma once + +#include "node.h" + +#include +#include +#include +#include +#include + +namespace FlowGraph { + + class Graph: public std::vector> + { + public: + Graph() {} + }; + +} + -- cgit v1.2.3