blob: cec9036b2d254c636498f8d43dbfe8586ae35f74 (
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
29
30
31
32
|
#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;
}
QString ExecutionNode::getHelp()
{
return QString();
}
|