|
#ifndef DOMAIN_DISPLAY_DISPLAY_H
|
|
#define DOMAIN_DISPLAY_DISPLAY_H
|
|
|
|
#include "displayitem.h"
|
|
|
|
#include <comdel/parser/astnode.h>
|
|
|
|
#include <vector>
|
|
|
|
class Display: AstNode
|
|
{
|
|
public:
|
|
Display();
|
|
|
|
std::vector<DisplayItem> items;
|
|
};
|
|
|
|
#endif // DOMAIN_DISPLAY_DISPLAY_H
|