#ifndef RFL_PARSING_SCHEMA_DEFINITION_HPP_ #define RFL_PARSING_SCHEMA_DEFINITION_HPP_ #include #include #include "Type.hpp" namespace rfl::parsing::schema { struct Definition { /// Contains the root element of the schema definition. Type root_; /// Contains the definitions to be referenced by Type::Reference. std::map definitions_; }; } // namespace rfl::parsing::schema #endif