summaryrefslogtreecommitdiffhomepage
path: root/serialize/wall-atlas.hpp
blob: 5e454f87c63d691e5c3f8e69a2529b552f8e1f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include "src/wall-atlas.hpp"
#include <memory>
#include <nlohmann/json_fwd.hpp>

namespace nlohmann {

template<>
struct adl_serializer<std::shared_ptr<floormat::wall_atlas>>
{
    static void to_json(json& j, const std::shared_ptr<const floormat::wall_atlas>& x);
    static void from_json(const json& j, std::shared_ptr<floormat::wall_atlas>& x);
};

} // namespace nlohmann