aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/startingnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/startingnode.cpp')
-rw-r--r--node/startingnode.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/node/startingnode.cpp b/node/startingnode.cpp
new file mode 100644
index 0000000..602fec0
--- /dev/null
+++ b/node/startingnode.cpp
@@ -0,0 +1,14 @@
+#include "startingnode.h"
+#include <QDebug>
+
+StartingNode::StartingNode()
+{
+
+}
+void StartingNode::run(ExecutionNode*)
+{
+ if(NULL!=m_nextNode)
+ {
+ m_nextNode->run(this);
+ }
+}