aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--diceparser.h27
-rw-r--r--node/jumpbackwardnode.h8
2 files changed, 27 insertions, 8 deletions
diff --git a/diceparser.h b/diceparser.h
index f9db840..7ec09ee 100644
--- a/diceparser.h
+++ b/diceparser.h
@@ -158,7 +158,17 @@ public:
* @return
*/
QString humanReadableError();
+ /**
+ * @brief getAliases
+ * @return
+ */
QList<DiceAlias*>* getAliases();
+ /**
+ * @brief DiceParser::convertAlias
+ * @param str
+ * @return
+ */
+ QString convertAlias(QString str);
private:
/**
@@ -220,12 +230,6 @@ private:
* @return
*/
bool readOperand(QString&,ExecutionNode* & node);
- /**
- * @brief DiceParser::convertAlias
- * @param str
- * @return
- */
- QString convertAlias(QString str);
/**
* @brief getErrorList
@@ -246,8 +250,17 @@ private:
*/
bool readNode(QString& str,ExecutionNode* & node);
-
+ /**
+ * @brief getLeafNode
+ * @return
+ */
ExecutionNode* getLeafNode();
+
+ /**
+ * @brief hasResultOfType
+ * @param notthelast
+ * @return
+ */
bool hasResultOfType(Result::RESULT_TYPE,bool notthelast = false);
diff --git a/node/jumpbackwardnode.h b/node/jumpbackwardnode.h
index 4ea3d11..c6c1e4d 100644
--- a/node/jumpbackwardnode.h
+++ b/node/jumpbackwardnode.h
@@ -6,8 +6,14 @@
class JumpBackwardNode : public ExecutionNode
{
public:
+ /**
+ * @brief JumpBackwardNode allows to get result from remote node in the execution tree.
+ */
JumpBackwardNode();
-
+ /**
+ * @brief run - performs the actions
+ * @param previous
+ */
virtual void run(ExecutionNode* previous = NULL);
/**