You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
525 B

  1. #pragma once
  2. #include <memory>
  3. #include <cpphibernate/config.h>
  4. namespace cpphibernate {
  5. namespace mariadb {
  6. enum init_stage
  7. {
  8. unknown = 0,
  9. stage1,
  10. stage2,
  11. };
  12. enum class attribute_t;
  13. struct attributes_t;
  14. struct field_t;
  15. struct fields_t;
  16. struct table_t;
  17. struct tables_t;
  18. struct schema_t;
  19. using field_ptr_u = std::unique_ptr<const field_t>;
  20. using table_ptr_u = std::unique_ptr<const table_t>;
  21. using schema_ptr_u = std::unique_ptr<schema_t>;
  22. } }