diff options
| author | 2020-01-30 01:27:15 +0100 | |
|---|---|---|
| committer | 2020-03-28 02:05:05 +0100 | |
| commit | 653ba9395a36cc20ec1d68c9a9cae78973fa334c (patch) | |
| tree | 72753ed3bdca117baf001cdf8251b1fb22276eeb /node/variablenode.h | |
| parent | 22d71d0032e2f44a8f267895aea3bd87864791b3 (diff) | |
| download | OneRoll-653ba9395a36cc20ec1d68c9a9cae78973fa334c.tar.gz OneRoll-653ba9395a36cc20ec1d68c9a9cae78973fa334c.zip | |
add unicity and repeat function part2
Diffstat (limited to 'node/variablenode.h')
| -rw-r--r-- | node/variablenode.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/node/variablenode.h b/node/variablenode.h index 45133c6..5306ddb 100644 --- a/node/variablenode.h +++ b/node/variablenode.h @@ -11,14 +11,14 @@ class VariableNode : public ExecutionNode { public: VariableNode(); - void run(ExecutionNode* previous); - virtual QString toString(bool withLabel) const; - virtual qint64 getPriority() const; + void run(ExecutionNode* previous) override; + virtual QString toString(bool withLabel) const override; + virtual qint64 getPriority() const override; /** * @brief getCopy * @return */ - virtual ExecutionNode* getCopy() const; + virtual ExecutionNode* getCopy() const override; quint64 getIndex() const; void setIndex(quint64 index); |