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.
 
 
 

15 lines
348 B

  1. #pragma once
  2. namespace cpphibernate {
  3. namespace mariadb {
  4. /**
  5. * @brief Helper class to select the right implementation of the destroy operation for the passed datatype.
  6. *
  7. * @tparam T_dataset Dataset type to select implementation for.
  8. */
  9. template<typename T_dataset, typename = void>
  10. struct destroy_impl_t;
  11. } }