diff options
Diffstat (limited to 'node/listaliasnode.h')
| -rw-r--r-- | node/listaliasnode.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/node/listaliasnode.h b/node/listaliasnode.h new file mode 100644 index 0000000..d01d17a --- /dev/null +++ b/node/listaliasnode.h @@ -0,0 +1,33 @@ +#ifndef LISTALIASNODE_H +#define LISTALIASNODE_H + +#include "executionnode.h" +#include "result/stringresult.h" + + +class ListAliasNode : public ExecutionNode +{ +public: + ListAliasNode(QMap<QString,QString>* mapAlias); + /** + * @brief run + * @param previous + */ + virtual void run(ExecutionNode* previous = NULL); + + /** + * @brief toString + * @return + */ + virtual QString toString()const; + /** + * @brief getPriority + * @return + */ + virtual qint64 getPriority() const; + +private: + QMap<QString,QString>* m_mapAlias; +}; + +#endif // LISTALIASNODE_H |