選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

16 行
243 B

  1. #pragma once
  2. #include <string>
  3. #include <cpputils/mp.h>
  4. namespace cppargs
  5. {
  6. template<typename T_value, typename T_enable = void>
  7. struct argument_props
  8. {
  9. static std::string type(bool optional = false) = delete;
  10. };
  11. }