mirror of
https://github.com/marzer/tomlplusplus.git
synced 2025-02-24 21:40:01 +00:00
also: - added `node_view::value` - added relops for the date/time classes - added `TOML_ALL_INLINE` and `TOML_IMPLEMENTATION` options - fixed documentation header overflowing on narrow devices
19 lines
333 B
C
19 lines
333 B
C
#pragma once
|
|
#include "toml_array.h"
|
|
|
|
#if TOML_IMPLEMENTATION
|
|
|
|
TOML_START
|
|
{
|
|
template class value<string>;
|
|
template class value<int64_t>;
|
|
template class value<double>;
|
|
template class value<bool>;
|
|
template class value<date>;
|
|
template class value<time>;
|
|
template class value<date_time>;
|
|
}
|
|
TOML_END
|
|
|
|
#endif // TOML_IMPLEMENTATION
|