#pragma once #include #include namespace cpphibernate { namespace mariadb { enum init_stage { unknown = 0, stage1, stage2, }; enum class attribute_t; struct attributes_t; struct field_t; struct fields_t; struct table_t; struct tables_t; struct schema_t; using field_ptr_u = std::unique_ptr; using table_ptr_u = std::unique_ptr; using schema_ptr_u = std::unique_ptr; } }