mirror of
https://github.com/ToruNiina/toml11.git
synced 2024-11-08 13:50:06 +00:00
c38079f7c0
that might cause compilation error
20 lines
330 B
C++
20 lines
330 B
C++
// 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
|