From 9f57feb3052ef74c9ee6aa08b39f04ee61f6839c Mon Sep 17 00:00:00 2001 From: Renaud G Date: Tue, 3 Mar 2015 22:57:16 +0100 Subject: -store pointeur to previous node. --- parsingtoolbox.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'parsingtoolbox.h') diff --git a/parsingtoolbox.h b/parsingtoolbox.h index 5007564..6090b44 100644 --- a/parsingtoolbox.h +++ b/parsingtoolbox.h @@ -28,12 +28,32 @@ #include "booleancondition.h" #include "range.h" +/** + * @brief The ParsingToolBox class - gathering tools + */ class ParsingToolBox { public: ParsingToolBox(); + /** + * @brief addSort + * @param e + * @param b + * @return + */ ExecutionNode* addSort(ExecutionNode* e,bool b); + /** + * @brief readLogicOperator + * @param str + * @param op + * @return + */ bool readLogicOperator(QString& str,BooleanCondition::LogicOperator& op); + /** + * @brief readValidator + * @param str + * @return + */ Validator* readValidator(QString& str); @@ -46,7 +66,17 @@ public: bool readNumber(QString& str, int& myNumber); + /** + * @brief readOpenParentheses + * @param str + * @return + */ bool readOpenParentheses(QString& str); + /** + * @brief readCloseParentheses + * @param str + * @return + */ bool readCloseParentheses(QString& str); private: -- cgit v1.2.3-70-g09d2