diff options
| author | 2019-02-12 23:59:24 +0100 | |
|---|---|---|
| committer | 2019-02-12 23:59:24 +0100 | |
| commit | f2051fb35b1ad49c4d940e6fbba2acc98b216e13 (patch) | |
| tree | 03117f493191d35104ac37eba72e916d41c849f2 /node/countexecutenode.h | |
| parent | 210a222b894caa3c8af38ccb6653db0fd8491f6e (diff) | |
| download | OneRoll-f2051fb35b1ad49c4d940e6fbba2acc98b216e13.tar.gz OneRoll-f2051fb35b1ad49c4d940e6fbba2acc98b216e13.zip | |
clang format
Diffstat (limited to 'node/countexecutenode.h')
| -rw-r--r-- | node/countexecutenode.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/node/countexecutenode.h b/node/countexecutenode.h index 8a6132b..8969a41 100644 --- a/node/countexecutenode.h +++ b/node/countexecutenode.h @@ -3,8 +3,8 @@ #include "executionnode.h" -#include "validator.h" #include "result/scalarresult.h" +#include "validator.h" /** * @brief The CountExecuteNode class @@ -16,7 +16,7 @@ public: * @brief CountExecuteNode */ CountExecuteNode(); - virtual ~CountExecuteNode(); + virtual ~CountExecuteNode(); /** * @brief run * @param previous @@ -25,12 +25,12 @@ public: /** * @brief setValidator */ - virtual void setValidator(Validator* ); + virtual void setValidator(Validator*); /** * @brief toString * @return */ - virtual QString toString(bool withLabel)const; + virtual QString toString(bool withLabel) const; /** * @brief getPriority * @return @@ -41,6 +41,7 @@ public: * @return */ virtual ExecutionNode* getCopy() const; + private: ScalarResult* m_scalarResult; Validator* m_validator; |