blob: d2113852a4c45a2d3feeeb8543944fdbe28fa98d (
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
|
#ifndef JUMPBACKWARDNODE_H
#define JUMPBACKWARDNODE_H
#include "executionnode.h"
class JumpBackwardNode : public ExecutionNode
{
public:
JumpBackwardNode();
virtual void run(ExecutionNode* previous = NULL);
/**
* @brief toString
* @return
*/
virtual QString toString() const;
/**
* @brief getPriority
* @return
*/
virtual qint64 getPriority() const;
};
#endif // JUMPBACKWARDNODE_H
|