Files
toml11/include/toml11/from.hpp

29 lines
528 B
C++
Raw Normal View History

2019-03-16 14:27:05 +09:00
#ifndef TOML11_FROM_HPP
#define TOML11_FROM_HPP
namespace toml
{
template<typename T>
struct from;
// {
// template<typename TC>
// static T from_toml(const toml::basic_value<TC>& v)
// {
// // User-defined conversions ...
// }
// };
template<typename T>
struct try_from;
// {
// template<typename TC>
// static result<T, error_info> try_from_toml(const toml::basic_value<TC>& v) noexcept
2019-03-16 14:27:05 +09:00
// {
// // User-defined conversions ...
// }
// };
} // toml
#endif // TOML11_FROM_HPP