aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/rerolldicenode.h
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2019-02-12 23:59:24 +0100
committerRenaud G <renaud@rolisteam.org>2019-02-12 23:59:24 +0100
commitf2051fb35b1ad49c4d940e6fbba2acc98b216e13 (patch)
tree03117f493191d35104ac37eba72e916d41c849f2 /node/rerolldicenode.h
parent210a222b894caa3c8af38ccb6653db0fd8491f6e (diff)
downloadOneRoll-f2051fb35b1ad49c4d940e6fbba2acc98b216e13.tar.gz
OneRoll-f2051fb35b1ad49c4d940e6fbba2acc98b216e13.zip
clang format
Diffstat (limited to 'node/rerolldicenode.h')
-rw-r--r--node/rerolldicenode.h75
1 files changed, 39 insertions, 36 deletions
diff --git a/node/rerolldicenode.h b/node/rerolldicenode.h
index 8bef6dd..32fad79 100644
--- a/node/rerolldicenode.h
+++ b/node/rerolldicenode.h
@@ -1,7 +1,6 @@
#ifndef REROLLDICENODE_H
#define REROLLDICENODE_H
-
#include "executionnode.h"
#include "result/diceresult.h"
#include "validator.h"
@@ -10,41 +9,45 @@
*/
class RerollDiceNode : public ExecutionNode
{
-
public:
- /**
- * @brief The ReRollMode enum
- */
- enum ReRollMode {EQUAL,LESSER,GREATER};
- /**
- * @brief RerollDiceNode
- * @param reroll If true reroll the dice only once, otherwise until the condition is false
- */
+ /**
+ * @brief The ReRollMode enum
+ */
+ enum ReRollMode
+ {
+ EQUAL,
+ LESSER,
+ GREATER
+ };
+ /**
+ * @brief RerollDiceNode
+ * @param reroll If true reroll the dice only once, otherwise until the condition is false
+ */
RerollDiceNode(bool reroll, bool addingMode);
- /**
- * @brief ~RerollDiceNode
- */
- virtual ~RerollDiceNode();
- /**
- * @brief run
- * @param previous
- */
+ /**
+ * @brief ~RerollDiceNode
+ */
+ virtual ~RerollDiceNode();
+ /**
+ * @brief run
+ * @param previous
+ */
virtual void run(ExecutionNode* previous);
- /**
- * @brief setValidator
- */
- virtual void setValidator(Validator* );
- /**
- * @brief toString
- * @return
- */
- virtual QString toString(bool )const;
- /**
- * @brief getPriority
- * @return
- */
+ /**
+ * @brief setValidator
+ */
+ virtual void setValidator(Validator*);
+ /**
+ * @brief toString
+ * @return
+ */
+ virtual QString toString(bool) const;
+ /**
+ * @brief getPriority
+ * @return
+ */
virtual qint64 getPriority() const;
/**
@@ -53,13 +56,13 @@ public:
*/
virtual ExecutionNode* getCopy() const;
- ExecutionNode *getInstruction() const;
- void setInstruction(ExecutionNode *instruction);
+ ExecutionNode* getInstruction() const;
+ void setInstruction(ExecutionNode* instruction);
private:
- DiceResult* m_diceResult = nullptr;
- Validator* m_validator = nullptr;
- ExecutionNode* m_instruction = nullptr;
+ DiceResult* m_diceResult= nullptr;
+ Validator* m_validator= nullptr;
+ ExecutionNode* m_instruction= nullptr;
const bool m_reroll;
const bool m_adding;