blob: e9bc5a59e17827ff91c5e708ce292257edc3ed1a (
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(bool withlabel)const;
/**
* @brief getPriority
* @return
*/
virtual qint64 getPriority() const;
};
#endif // STARTINGNODE_H
|