blob: ea70fe70723997f5a09c0868670a2ac14ee5a5bd (
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"
#include "dicealias.h"
class ListAliasNode : public ExecutionNode
{
public:
ListAliasNode(QList<DiceAlias*>* 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:
QList<DiceAlias*>* m_aliasList;
};
#endif // LISTALIASNODE_H
|