您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

15 行
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. } }