您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

29 行
528 B

  1. #pragma once
  2. #include <vector>
  3. #include <cpphibernate/misc.h>
  4. #include <cpphibernate/config.h>
  5. #include <cpphibernate/driver/mariadb/schema/field.fwd.h>
  6. beg_namespace_cpphibernate_driver_mariadb
  7. {
  8. /* tables_t */
  9. struct tables_t;
  10. /* make_tables */
  11. namespace __impl
  12. {
  13. template<typename T, typename = void>
  14. struct make_tables_impl;
  15. }
  16. constexpr decltype(auto) make_tables = misc::make_generic_predicate<__impl::make_tables_impl> { };
  17. }
  18. end_namespace_cpphibernate_driver_mariadb