aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/startingnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'node/startingnode.h')
-rw-r--r--node/startingnode.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/node/startingnode.h b/node/startingnode.h
new file mode 100644
index 0000000..08134e7
--- /dev/null
+++ b/node/startingnode.h
@@ -0,0 +1,14 @@
+#ifndef STARTINGNODE_H
+#define STARTINGNODE_H
+
+#include "executionnode.h"
+
+class StartingNode : public ExecutionNode
+{
+public:
+ StartingNode();
+
+ virtual void run(ExecutionNode*);
+};
+
+#endif // STARTINGNODE_H