feat add toml

This commit is contained in:
tqcq
2024-04-09 00:34:09 +08:00
parent 93129ae219
commit 3ff3323424
26 changed files with 11351 additions and 3 deletions

View File

@ -0,0 +1,19 @@
// Copyright Toru Niina 2019.
// Distributed under the MIT License.
#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