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.
 
 
 

27 lines
473 B

  1. #pragma once
  2. #include <memory>
  3. #include <cpphibernate/misc.h>
  4. #include <cpphibernate/config.h>
  5. beg_namespace_cpphibernate_driver_mariadb
  6. {
  7. /* schema_t */
  8. struct schema_t;
  9. /* make_schema */
  10. namespace __impl
  11. {
  12. template<typename T, typename = void>
  13. struct make_schema_impl;
  14. }
  15. constexpr decltype(auto) make_schema = misc::make_generic_predicate<__impl::make_schema_impl> { };
  16. }
  17. end_namespace_cpphibernate_driver_mariadb