summaryrefslogtreecommitdiffhomepage
path: root/flowgraph/graph.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-10-24 16:32:18 +0200
committerRoland Reichwein <mail@reichwein.it>2020-10-24 16:32:18 +0200
commit1011655d2ef76a0c0aa29dbbff091dab139198e3 (patch)
tree63763828f259846f56285691805c187583ecb6bb /flowgraph/graph.h
parent1349c00b782eca3ea841bfa388301cb6fc908cc7 (diff)
Add FlowGraph
Diffstat (limited to 'flowgraph/graph.h')
-rw-r--r--flowgraph/graph.h20
1 files changed, 20 insertions, 0 deletions
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 <exception>
+#include <memory>
+#include <string>
+#include <stdexcept>
+#include <vector>
+
+namespace FlowGraph {
+
+ class Graph: public std::vector<std::shared_ptr<Node>>
+ {
+ public:
+ Graph() {}
+ };
+
+}
+