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.
 
 
 

21 lines
437 B

  1. #pragma once
  2. #include "destroy_context.h"
  3. #include "data_context.inl"
  4. namespace cpphibernate {
  5. namespace mariadb {
  6. /* destroy_context */
  7. template<typename T_dataset>
  8. destroy_context::destroy_context(
  9. const schema_t& p_schema,
  10. ::cppmariadb::connection& p_connection,
  11. T_dataset& p_dataset)
  12. : data_context (p_schema, p_connection, p_dataset)
  13. { }
  14. } }