Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

21 rader
419 B

  1. #pragma once
  2. #include "init_context.h"
  3. #include "base_context.inl"
  4. namespace cpphibernate {
  5. namespace mariadb {
  6. /* init_context */
  7. init_context::init_context(
  8. const schema_t& p_schema,
  9. ::cppmariadb::connection& p_connection,
  10. bool p_recreate)
  11. : base_context (p_schema, p_connection)
  12. , recreate (p_recreate)
  13. { }
  14. } }