diff options
| author | 2019-02-12 23:59:24 +0100 | |
|---|---|---|
| committer | 2019-02-12 23:59:24 +0100 | |
| commit | f2051fb35b1ad49c4d940e6fbba2acc98b216e13 (patch) | |
| tree | 03117f493191d35104ac37eba72e916d41c849f2 /node/listaliasnode.h | |
| parent | 210a222b894caa3c8af38ccb6653db0fd8491f6e (diff) | |
| download | OneRoll-f2051fb35b1ad49c4d940e6fbba2acc98b216e13.tar.gz OneRoll-f2051fb35b1ad49c4d940e6fbba2acc98b216e13.zip | |
clang format
Diffstat (limited to 'node/listaliasnode.h')
| -rw-r--r-- | node/listaliasnode.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/node/listaliasnode.h b/node/listaliasnode.h index 493aa1e..44635e0 100644 --- a/node/listaliasnode.h +++ b/node/listaliasnode.h @@ -21,9 +21,9 @@ #ifndef LISTALIASNODE_H #define LISTALIASNODE_H +#include "dicealias.h" #include "executionnode.h" #include "result/stringresult.h" -#include "dicealias.h" /** * @brief The ListAliasNode class is dedicated to display the list of the current aliases. @@ -32,29 +32,29 @@ class ListAliasNode : public ExecutionNode { public: ListAliasNode(QList<DiceAlias*>* mapAlias); - /** - * @brief run - * @param previous - */ - virtual void run(ExecutionNode* previous = nullptr); + /** + * @brief run + * @param previous + */ + virtual void run(ExecutionNode* previous= nullptr); - /** - * @brief toString - * @return - */ - virtual QString toString(bool) const; + /** + * @brief toString + * @return + */ + virtual QString toString(bool) const; /** * @brief buildList * @return */ virtual QString buildList() const; - /** - * @brief getPriority - * @return - */ - virtual qint64 getPriority() const; + /** + * @brief getPriority + * @return + */ + virtual qint64 getPriority() const; - virtual ExecutionNode *getCopy() const; + virtual ExecutionNode* getCopy() const; private: QList<DiceAlias*>* m_aliasList; |