aboutsummaryrefslogtreecommitdiff
path: root/src/toml11/toml/into.hpp
diff options
context:
space:
mode:
authorNicolas Mattia <nicolas@nmattia.com>2021-12-17 22:03:33 +0100
committerNicolas Mattia <nicolas@nmattia.com>2021-12-17 22:03:33 +0100
commitc3f68b5db7b9d4b963102a2abc20e20445a8bec5 (patch)
treef4d8028793eb66c856d3ad56ae0a5ed1af7c2005 /src/toml11/toml/into.hpp
parent6e6e998930f0d7361d64644eb37d9134e74e8501 (diff)
Replace cpptoml with toml11
Diffstat (limited to 'src/toml11/toml/into.hpp')
-rw-r--r--src/toml11/toml/into.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/toml11/toml/into.hpp b/src/toml11/toml/into.hpp
new file mode 100644
index 000000000..74495560e
--- /dev/null
+++ b/src/toml11/toml/into.hpp
@@ -0,0 +1,19 @@
+// Copyright Toru Niina 2019.
+// Distributed under the MIT License.
+#ifndef TOML11_INTO_HPP
+#define TOML11_INTO_HPP
+
+namespace toml
+{
+
+template<typename T>
+struct into;
+// {
+// static toml::value into_toml(const T& user_defined_type)
+// {
+// // User-defined conversions ...
+// }
+// };
+
+} // toml
+#endif // TOML11_INTO_HPP