#ifndef DOMAIN_SCHEMA_INSTANCE_H #define DOMAIN_SCHEMA_INSTANCE_H #include "instanceattribute.h" #include #include class Instance: AstNode { std::string name; std::string component; std::pair position; std::vector attributes; int size; public: Instance(); }; #endif // DOMAIN_SCHEMA_INSTANCE_H