19 lines
272 B
C
19 lines
272 B
C
|
#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
|