forked from Mirror/libstarlight
37 lines
871 B
C++
37 lines
871 B
C++
#pragma once
|
|
|
|
#ifndef NLOHMANN_JSON_FWD_HPP
|
|
#define NLOHMANN_JSON_FWD_HPP
|
|
|
|
#include <cstdint>
|
|
#include <map>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <type_traits>
|
|
|
|
namespace nlohmann
|
|
{
|
|
|
|
template <
|
|
template<typename U, typename V, typename... Args> class ObjectType,
|
|
template<typename U, typename... Args> class ArrayType,
|
|
class StringType,
|
|
class BooleanType,
|
|
class NumberIntegerType,
|
|
class NumberUnsignedType,
|
|
class NumberFloatType,
|
|
template<typename U> class AllocatorType,
|
|
template<typename T, typename SFINAE = void> class JSONSerializer
|
|
>
|
|
class basic_json;
|
|
|
|
template<typename, typename>
|
|
struct adl_serializer;
|
|
|
|
using json = basic_json<std::map,std::vector,std::string,bool,std::int64_t,
|
|
std::uint64_t,double,std::allocator,adl_serializer>;
|
|
|
|
} // namespace nlohmann
|
|
|
|
#endif // NLOHMANN_JSON_FWD_HPP
|