blob: c6c1e4d0928d84e72b0ed19b940dbc319fd09f73 (
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
33
34
|
#ifndef JUMPBACKWARDNODE_H
#define JUMPBACKWARDNODE_H
#include "executionnode.h"
#include "result/diceresult.h"
class JumpBackwardNode : public ExecutionNode
{
public:
/**
* @brief JumpBackwardNode allows to get result from remote node in the execution tree.
*/
JumpBackwardNode();
/**
* @brief run - performs the actions
* @param previous
*/
virtual void run(ExecutionNode* previous = NULL);
/**
* @brief toString
* @return
*/
virtual QString toString() const;
/**
* @brief getPriority
* @return
*/
virtual qint64 getPriority() const;
private:
DiceResult* m_diceResult;
};
#endif // JUMPBACKWARDNODE_H
|