diff options
| author | 2015-05-05 07:03:46 +0200 | |
|---|---|---|
| committer | 2015-05-05 07:03:46 +0200 | |
| commit | e844799045b0b3a4d8a968e011c96c10003d4256 (patch) | |
| tree | 1e0d159489152769c87295e5c33e574d25ebc6a6 /node/startingnode.h | |
| parent | 590fc6528b09bf1abbd90caf31053cd5ef6b439b (diff) | |
| parent | 6dbf254b7d5b19b77eb4716b24a1768f48b11248 (diff) | |
| download | OneRoll-e844799045b0b3a4d8a968e011c96c10003d4256.tar.gz OneRoll-e844799045b0b3a4d8a968e011c96c10003d4256.zip | |
Merge branch 'master' of github.com:obiwankennedy/DiceParser
Diffstat (limited to 'node/startingnode.h')
| -rw-r--r-- | node/startingnode.h | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/node/startingnode.h b/node/startingnode.h index ccb7c87..ebe28c0 100644 --- a/node/startingnode.h +++ b/node/startingnode.h @@ -3,13 +3,30 @@ #include "executionnode.h" +/** + * @brief The StartingNode class is an ExecutionNode, StartingNode is dedicated to be the first node + * in the execution tree. + */ class StartingNode : public ExecutionNode { public: + /** + * @brief StartingNode + */ StartingNode(); - + /** + * @brief run + */ virtual void run(ExecutionNode*); + /** + * @brief toString + * @return + */ virtual QString toString()const; + /** + * @brief getPriority + * @return + */ virtual qint64 getPriority() const; }; |