blob: ebe28c0a6b37fe1b7e00a9bf5bf1a026c555aac4 (
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
|
#ifndef STARTINGNODE_H
#define STARTINGNODE_H
#include "executionnode.h"
/**
* @brief The StartingNode class is an ExecutionNode, StartingNode is dedicated to be the first node
* in the execution tree.
*/
class StartingNode : public ExecutionNode
{
public:
/**
* @brief StartingNode
*/
StartingNode();
/**
* @brief run
*/
virtual void run(ExecutionNode*);
/**
* @brief toString
* @return
*/
virtual QString toString()const;
/**
* @brief getPriority
* @return
*/
virtual qint64 getPriority() const;
};
#endif // STARTINGNODE_H
|