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.

19 lines
330 B

1 year ago
  1. // Copyright Toru Niina 2019.
  2. // Distributed under the MIT License.
  3. #ifndef TOML11_FROM_HPP
  4. #define TOML11_FROM_HPP
  5. namespace toml
  6. {
  7. template<typename T>
  8. struct from;
  9. // {
  10. // static T from_toml(const toml::value& v)
  11. // {
  12. // // User-defined conversions ...
  13. // }
  14. // };
  15. } // toml
  16. #endif // TOML11_FROM_HPP