blob: 1bbcf429dde41f971b16fb040dd3717698f779de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include <nlohmann/json.hpp>
#include <Corrade/Containers/StringView.h>
namespace floormat {
struct json_helper final {
using json = nlohmann::json;
template<typename T> static T from_json(StringView pathname) noexcept(false);
template<typename T> static void to_json(const T& self, StringView pathname) noexcept(false);
static json from_json_(StringView pathname) noexcept(false);
static void to_json_(const json& j, StringView pathname) noexcept(false);
};
template<typename T> T json_helper::from_json(StringView pathname) noexcept(false) { return from_json_(pathname); }
template<typename T> void json_helper::to_json(const T& self, StringView pathname) noexcept(false) { to_json_(json(self), pathname); }
} // namespace floormat
|