選択できるのは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. } }