add toml11 as dependency

This commit is contained in:
kumquat-ir
2021-04-15 23:19:01 -07:00
parent 8b926d29d7
commit 42253150e4
29 changed files with 12395 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
// Copyright Toru Niina 2019.
// Distributed under the MIT License.
#ifndef TOML11_FROM_HPP
#define TOML11_FROM_HPP
#include "traits.hpp"
namespace toml
{
template<typename T>
struct from;
// {
// static T from_toml(const toml::value& v)
// {
// // User-defined conversions ...
// }
// };
} // toml
#endif // TOML11_FROM_HPP