2018-01-10 09:18:31 +00:00
|
|
|
#pragma once
|
2017-08-14 16:22:49 +00:00
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
2018-01-29 10:21:11 +00:00
|
|
|
#include <nlohmann/detail/conversions/from_json.hpp>
|
|
|
|
#include <nlohmann/detail/conversions/to_json.hpp>
|
2017-08-14 16:22:49 +00:00
|
|
|
|
|
|
|
namespace nlohmann
|
|
|
|
{
|
|
|
|
template<typename, typename>
|
|
|
|
struct adl_serializer
|
|
|
|
{
|
|
|
|
/*!
|
|
|
|
@brief convert a JSON value to any value type
|
|
|
|
|
|
|
|
This function is usually called by the `get()` function of the
|
|
|
|
@ref basic_json class (either explicit or via conversion operators).
|
|
|
|
|
|
|
|
@param[in] j JSON value to read from
|
|
|
|
@param[in,out] val value to write to
|
|
|
|
*/
|
|
|
|
template<typename BasicJsonType, typename ValueType>
|
2018-09-06 14:54:42 +00:00
|
|
|
static auto from_json(BasicJsonType&& j, ValueType& val) noexcept(
|
|
|
|
noexcept(::nlohmann::from_json(std::forward<BasicJsonType>(j), val))) -> decltype(
|
|
|
|
::nlohmann::from_json(std::forward<BasicJsonType>(j), val), void()
|
|
|
|
)
|
2017-08-14 16:22:49 +00:00
|
|
|
{
|
|
|
|
::nlohmann::from_json(std::forward<BasicJsonType>(j), val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
@brief convert any value type to a JSON value
|
|
|
|
|
|
|
|
This function is usually called by the constructors of the @ref basic_json
|
|
|
|
class.
|
|
|
|
|
|
|
|
@param[in,out] j JSON value to write to
|
|
|
|
@param[in] val value to read from
|
|
|
|
*/
|
2018-09-06 14:08:01 +00:00
|
|
|
template <typename BasicJsonType, typename ValueType>
|
|
|
|
static auto to_json(BasicJsonType& j, ValueType&& val) noexcept(
|
2017-08-14 16:22:49 +00:00
|
|
|
noexcept(::nlohmann::to_json(j, std::forward<ValueType>(val))))
|
2018-09-06 14:08:01 +00:00
|
|
|
-> decltype(::nlohmann::to_json(j, std::forward<ValueType>(val)),
|
|
|
|
void())
|
2017-08-14 16:22:49 +00:00
|
|
|
{
|
|
|
|
::nlohmann::to_json(j, std::forward<ValueType>(val));
|
|
|
|
}
|
|
|
|
};
|
2018-10-07 16:39:18 +00:00
|
|
|
} // namespace nlohmann
|