18 lines
277 B
C
18 lines
277 B
C
|
#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
|