diff options
author | Nicolas Mattia <nicolas@nmattia.com> | 2021-12-17 22:03:33 +0100 |
---|---|---|
committer | Nicolas Mattia <nicolas@nmattia.com> | 2021-12-17 22:03:33 +0100 |
commit | c3f68b5db7b9d4b963102a2abc20e20445a8bec5 (patch) | |
tree | f4d8028793eb66c856d3ad56ae0a5ed1af7c2005 /src/toml11/toml/from.hpp | |
parent | 6e6e998930f0d7361d64644eb37d9134e74e8501 (diff) |
Replace cpptoml with toml11
Diffstat (limited to 'src/toml11/toml/from.hpp')
-rw-r--r-- | src/toml11/toml/from.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/toml11/toml/from.hpp b/src/toml11/toml/from.hpp new file mode 100644 index 000000000..10815caf5 --- /dev/null +++ b/src/toml11/toml/from.hpp @@ -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 |