diff options
Diffstat (limited to 'src/libparser/node/executionnode.h')
| -rw-r--r-- | src/libparser/node/executionnode.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libparser/node/executionnode.h b/src/libparser/node/executionnode.h index cacd307..7036b96 100644 --- a/src/libparser/node/executionnode.h +++ b/src/libparser/node/executionnode.h @@ -17,7 +17,7 @@ public: /** * @brief ExecutionNode */ - ExecutionNode(); + ExecutionNode(const QString& label= QString()); /** * @brief ~ExecutionNode */ @@ -53,7 +53,7 @@ public: * @brief toString * @return */ - virtual QString toString(bool withLabel) const= 0; + virtual QString toString(bool withLabel) const; /** * @brief getPriority * @return @@ -105,6 +105,7 @@ protected: QMap<Dice::ERROR_CODE, QString> m_errors; QMap<Dice::ERROR_CODE, QString> m_warnings; QString m_id; + QString m_label; }; #endif // EXECUTIONNODE_H |