Files
toml11/include/toml11/from.hpp
2024-06-15 19:13:02 +09:00

18 lines
258 B
C++

#ifndef TOML11_FROM_HPP
#define TOML11_FROM_HPP
namespace toml
{
template<typename T>
struct from;
// {
// static T from_toml(const toml::value& v)
// {
// // User-defined conversions ...
// }
// };
} // toml
#endif // TOML11_FROM_HPP