diff options
Diffstat (limited to 'src/libparser/node/roundnode.h')
| -rw-r--r-- | src/libparser/node/roundnode.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libparser/node/roundnode.h b/src/libparser/node/roundnode.h index 0bf49b7..a16e886 100644 --- a/src/libparser/node/roundnode.h +++ b/src/libparser/node/roundnode.h @@ -7,7 +7,8 @@ class RoundNode : public ExecutionNode { public: - enum Mode { + enum Mode + { FLOOR, CEIL, ROUND @@ -16,10 +17,10 @@ public: // ExecutionNode interface public: - void run(ExecutionNode *previous); + void run(ExecutionNode* previous); QString toString(bool withLabel) const; qint64 getPriority() const; - ExecutionNode *getCopy() const; + ExecutionNode* getCopy() const; void setCommand(ExecutionNode* cmd); private: |