2024-06-15 19:13:02 +09:00
|
|
|
#include <toml11/context.hpp>
|
|
|
|
|
#include <toml11/types.hpp>
|
2025-05-16 15:03:29 +02:00
|
|
|
#include <toml11/version.hpp>
|
2024-06-15 19:13:02 +09:00
|
|
|
|
|
|
|
|
#if ! defined(TOML11_COMPILE_SOURCES)
|
|
|
|
|
#error "Define `TOML11_COMPILE_SOURCES` before compiling source code!"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
namespace toml
|
|
|
|
|
{
|
2025-05-16 15:03:29 +02:00
|
|
|
inline namespace TOML11_INLINE_VERSION_NAMESPACE
|
|
|
|
|
{
|
2024-06-15 19:13:02 +09:00
|
|
|
namespace detail
|
|
|
|
|
{
|
|
|
|
|
template class context<::toml::type_config>;
|
|
|
|
|
template class context<::toml::ordered_type_config>;
|
|
|
|
|
} // detail
|
2025-05-16 15:03:29 +02:00
|
|
|
} // TOML11_INLINE_VERSION_NAMESPACE
|
2024-06-15 19:13:02 +09:00
|
|
|
} // toml
|