|
#ifndef DISPLAYITEM_H
|
|
#define DISPLAYITEM_H
|
|
|
|
#include <comdel/parser/astnode.h>
|
|
#include <vector>
|
|
#include "../library/value.h"
|
|
|
|
|
|
class DisplayItem: AstNode
|
|
{
|
|
public:
|
|
IdentifierNode type;
|
|
std::vector<PropertyNode> values;
|
|
DisplayItem();
|
|
};
|
|
|
|
#endif // DISPLAYITEM_H
|