#include "startingnode.h" #include StartingNode::StartingNode() { } void StartingNode::run(ExecutionNode*) { qDebug() << "starting node"; if(NULL!=m_nextNode) { m_nextNode->run(this); } } QString StartingNode::toString() const { return "Starting node"; }