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
554 B

  1. #pragma once
  2. #include "field_simple.h"
  3. namespace cpphibernate {
  4. namespace mariadb {
  5. /* field_simple_t */
  6. template<
  7. typename T_field>
  8. template<
  9. typename T_schema,
  10. typename T_table>
  11. field_simple_t<T_field>::field_simple_t(
  12. const table_t& p_owner,
  13. const T_schema& p_schema,
  14. const T_table& p_table,
  15. const T_field& p_field)
  16. : field_t::field_t(
  17. p_owner,
  18. p_schema,
  19. p_table,
  20. p_field)
  21. , _field(p_field)
  22. { }
  23. } }