diff options
| author | 2015-04-30 11:09:04 +0200 | |
|---|---|---|
| committer | 2015-04-30 11:09:04 +0200 | |
| commit | e1429844d3c7c2feeec8291084fb7f36e9ef38af (patch) | |
| tree | 352d0bcac94201727e75ae55c0ba0da5d1aaf7cb /node/startingnode.h | |
| parent | 5c73a6cb13b8c301d0e60f916998c3e683a2b043 (diff) | |
| download | OneRoll-e1429844d3c7c2feeec8291084fb7f36e9ef38af.tar.gz OneRoll-e1429844d3c7c2feeec8291084fb7f36e9ef38af.zip | |
add comments and gpl header to those files for better documentation in doxygen
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; }; |