Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

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