diff options
| author | 2017-10-21 19:03:39 +0200 | |
|---|---|---|
| committer | 2017-10-21 19:03:39 +0200 | |
| commit | 046ff21b36d8b214923c5b8dc6f22bd65e49e669 (patch) | |
| tree | 2b5999e3046cb135ea22d65940c2afb1c549a865 /node/mergenode.h | |
| parent | 6d216c231e8d4a6b97310f19c2083606886da81b (diff) | |
| download | OneRoll-046ff21b36d8b214923c5b8dc6f22bd65e49e669.tar.gz OneRoll-046ff21b36d8b214923c5b8dc6f22bd65e49e669.zip | |
-adapt merge node to new way of several command.
Diffstat (limited to 'node/mergenode.h')
| -rw-r--r-- | node/mergenode.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/node/mergenode.h b/node/mergenode.h index aebf9e2..0626fb2 100644 --- a/node/mergenode.h +++ b/node/mergenode.h @@ -36,8 +36,15 @@ public: virtual QString toString(bool withLabel)const; virtual qint64 getPriority() const; virtual ExecutionNode *getCopy() const; + QList<ExecutionNode *>* getStartList() const; + void setStartList(QList<ExecutionNode *>* startList); + +private: + ExecutionNode *getLatestNode(ExecutionNode *node); + private: DiceResult* m_diceResult; + QList<ExecutionNode *>* m_startList; }; #endif // NUMBERNODE_H |