3#include <nlohmann/json.hpp>
31 static nlohmann::json
to_json(
const T& val) {
return val; }
32 static void from_json(
const nlohmann::json& j,
T& out) { out = j.get<
T>(); }
static void from_json(const nlohmann::json &j, T &out)
static nlohmann::json to_json(const T &val)
Extension point for JSONSerializer.