aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/executionnode.cpp
blob: 0f42afa0ff0a8d55e53c206c19ef0fdafa992bc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "executionnode.h"

ExecutionNode::ExecutionNode()
    : m_nextNode(NULL),m_result(NULL)
{

}
ExecutionNode::~ExecutionNode()
{

}

Result* ExecutionNode::getResult()
{
    return m_result;
}
void ExecutionNode::setNextNode(ExecutionNode* node)
{
    m_nextNode = node;
}
ExecutionNode* ExecutionNode::getNextNode()
{
    return m_nextNode;
}