aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/startingnode.cpp
blob: 602fec072771607e3ee94e0c177929daaa6ede31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "startingnode.h"
#include <QDebug>

StartingNode::StartingNode()
{

}
void StartingNode::run(ExecutionNode*)
{
    if(NULL!=m_nextNode)
    {
        m_nextNode->run(this);
    }
}