aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/startingnode.h
blob: ccb7c878f72c8380f323b7ebd504c7958ef52687 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef STARTINGNODE_H
#define STARTINGNODE_H

#include "executionnode.h"

class StartingNode : public ExecutionNode
{
public:
    StartingNode();

    virtual void run(ExecutionNode*);
    virtual QString toString()const;
    virtual qint64 getPriority() const;
};

#endif // STARTINGNODE_H