aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/parsingtoolbox.h
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2016-09-25 10:04:28 +0200
committerRenaud G <renaud@rolisteam.org>2016-09-25 10:04:28 +0200
commitfac053c3aacc0e2ede8a85ff41e27eed1c360f6f (patch)
treec91ff176e60f1f6e634107b4e7a7282e831975ee /parsingtoolbox.h
parentdbb57d52d351e340ce69fccaedbdf758b04ed8fe (diff)
parente225f2edfd365d1709df2cb5bb2f752ec8d82c1c (diff)
downloadOneRoll-fac053c3aacc0e2ede8a85ff41e27eed1c360f6f.tar.gz
OneRoll-fac053c3aacc0e2ede8a85ff41e27eed1c360f6f.zip
Merge branch 'master' of github.com:Rolisteam/DiceParser
Diffstat (limited to 'parsingtoolbox.h')
-rw-r--r--parsingtoolbox.h74
1 files changed, 37 insertions, 37 deletions
diff --git a/parsingtoolbox.h b/parsingtoolbox.h
index 3046570..e5f7fa8 100644
--- a/parsingtoolbox.h
+++ b/parsingtoolbox.h
@@ -41,25 +41,25 @@ class ParsingToolBox
public:
enum LIST_OPERATOR {NONE,UNIQUE};
- /**
- * @brief ParsingToolBox
- */
+ /**
+ * @brief ParsingToolBox
+ */
ParsingToolBox();
/**
* @brief ParsingToolBox
* @param data
*/
ParsingToolBox(const ParsingToolBox & data);
- /**
- * @brief ~ParsingToolBox
- */
- virtual ~ParsingToolBox();
- /**
- * @brief addSort
- * @param e
- * @param b
- * @return
- */
+ /**
+ * @brief ~ParsingToolBox
+ */
+ virtual ~ParsingToolBox();
+ /**
+ * @brief addSort
+ * @param e
+ * @param b
+ * @return
+ */
ExecutionNode* addSort(ExecutionNode* e,bool b);
/**
* @brief readAscending
@@ -67,18 +67,18 @@ public:
* @return
*/
static bool readAscending(QString& str);
- /**
- * @brief readLogicOperator
- * @param str
- * @param op
- * @return
- */
+ /**
+ * @brief readLogicOperator
+ * @param str
+ * @param op
+ * @return
+ */
bool readLogicOperator(QString& str,BooleanCondition::LogicOperator& op);
- /**
- * @brief readValidator
- * @param str
- * @return
- */
+ /**
+ * @brief readValidator
+ * @param str
+ * @return
+ */
Validator* readValidator(QString& str);
/**
* @brief readCompositeValidator
@@ -102,17 +102,17 @@ public:
* @return
*/
static bool readVariable(QString& str,qint64& myNumber);
- /**
- * @brief readOpenParentheses
- * @param str
- * @return
- */
+ /**
+ * @brief readOpenParentheses
+ * @param str
+ * @return
+ */
static bool readOpenParentheses(QString& str);
- /**
- * @brief readCloseParentheses
- * @param str
- * @return
- */
+ /**
+ * @brief readCloseParentheses
+ * @param str
+ * @return
+ */
static bool readCloseParentheses(QString& str);
/**
@@ -168,11 +168,11 @@ private:
QMap<QString,BooleanCondition::LogicOperator>* m_logicOp;
QMap<QString,CompositeValidator::LogicOperation>* m_logicOperation;
- QMap<QString,OperationCondition::ConditionOperator>* m_conditionOperation;
- QHash<QString,ScalarOperatorNode::ArithmeticOperator>* m_arithmeticOperation;
+ QMap<QString,OperationCondition::ConditionOperator>* m_conditionOperation;
+ QHash<QString,ScalarOperatorNode::ArithmeticOperator>* m_arithmeticOperation;
- static QHash<QString,QString>* m_variableHash;
+ static QHash<QString,QString>* m_variableHash;
};
#endif // PARSINGTOOLBOX_H