diff options
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); |