diff options
| author | 2018-03-18 17:48:12 +0100 | |
|---|---|---|
| committer | 2018-03-18 17:48:12 +0100 | |
| commit | f636b30d5e1e960942d1ac2ee6a10f108b2b3f38 (patch) | |
| tree | d9fb54f21d0939d2a82667b69b7fd9eb1d41e97f /parsingtoolbox.h | |
| parent | fb81611be9f888aec9b9eb454c533dab90bc015f (diff) | |
| download | OneRoll-f636b30d5e1e960942d1ac2ee6a10f108b2b3f38.tar.gz OneRoll-f636b30d5e1e960942d1ac2ee6a10f108b2b3f38.zip | |
-move readoperand inside parsingtoolbox.
Diffstat (limited to 'parsingtoolbox.h')
| -rw-r--r-- | parsingtoolbox.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/parsingtoolbox.h b/parsingtoolbox.h index 902b91e..4a88732 100644 --- a/parsingtoolbox.h +++ b/parsingtoolbox.h @@ -189,6 +189,11 @@ public: bool readComment(QString& str, QString &,QString &); static ExecutionNode *getLatestNode(ExecutionNode *node); + + static std::vector<ExecutionNode *> *getStartNodes(); + static void setStartNodes(std::vector<ExecutionNode *> *startNodes); + + static bool readOperand(QString &str, ExecutionNode *&node); private: QMap<QString,BooleanCondition::LogicOperator>* m_logicOp; |