forked from lix-project/lix
f4ab297b31
`///@file` makes them show up in the internal API dos. A tiny few were missing `#pragma once`.
16 lines
759 B
C++
16 lines
759 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include "nlohmann/json_fwd.hpp"
|
|
|
|
// Following https://github.com/nlohmann/json#how-can-i-use-get-for-non-default-constructiblenon-copyable-types
|
|
#define JSON_IMPL(TYPE) \
|
|
namespace nlohmann { \
|
|
using namespace nix; \
|
|
template <> \
|
|
struct adl_serializer<TYPE> { \
|
|
static TYPE from_json(const json & json); \
|
|
static void to_json(json & json, TYPE t); \
|
|
}; \
|
|
}
|