blob: 6d6fe8b4445c2fb4256b6045be8cbdf980dd999e (
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
25
26
27
28
|
#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;
}
QList<ExecutionNode::ERROR_CODE> ExecutionNode::getErrorList()
{
return m_errors;
}
|