mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-12-16 03:08:52 +08:00
13 lines
291 B
C++
13 lines
291 B
C++
#include <toml11/value.hpp>
|
|
#include <toml11/types.hpp>
|
|
|
|
#if ! defined(TOML11_COMPILE_SOURCES)
|
|
#error "Define `TOML11_COMPILE_SOURCES` before compiling source code!"
|
|
#endif
|
|
|
|
namespace toml
|
|
{
|
|
template class basic_value<type_config>;
|
|
template class basic_value<ordered_type_config>;
|
|
} // toml
|