mirror of
https://github.com/ToruNiina/toml11.git
synced 2024-11-09 14:20:06 +00:00
20 lines
346 B
C++
20 lines
346 B
C++
|
// 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
|