2020-03-01 14:56:40 +00:00
|
|
|
#pragma once
|
2020-03-02 10:14:54 +00:00
|
|
|
#include "toml_value.h"
|
2020-03-01 14:56:40 +00:00
|
|
|
|
|
|
|
TOML_START
|
|
|
|
{
|
2020-03-02 10:14:54 +00:00
|
|
|
template class TOML_API value<string>;
|
|
|
|
template class TOML_API value<int64_t>;
|
|
|
|
template class TOML_API value<double>;
|
|
|
|
template class TOML_API value<bool>;
|
|
|
|
template class TOML_API value<date>;
|
|
|
|
template class TOML_API value<time>;
|
|
|
|
template class TOML_API value<date_time>;
|
2020-03-01 14:56:40 +00:00
|
|
|
}
|
|
|
|
TOML_END
|