aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/listaliasnode.h
blob: d01d17adc1e582c59853f2abb484035ee6d0bd00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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