tomlplusplus/include/toml++/toml_value_impl.h
Mark Gillard 946a912cee added node::value() and node::value_or()
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
2020-03-01 16:56:40 +02:00

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