Path: blob/main/extensions/copilot/test/simulation/fixtures/cpp/headers/json_fwd.hpp
13405 views
// __ _____ _____ _____1// __| | __| | | | JSON for Modern C++2// | | |__ | | | | | | version 3.11.33// |_____|_____|_____|_|___| https://github.com/nlohmann/json4//5// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>6// SPDX-License-Identifier: MIT78#ifndef INCLUDE_NLOHMANN_JSON_FWD_HPP_9#define INCLUDE_NLOHMANN_JSON_FWD_HPP_1011#include <cstdint> // int64_t, uint64_t12#include <map> // map13#include <memory> // allocator14#include <string> // string15#include <vector> // vector1617#include "abi_macros.hpp"1819/*!20@brief namespace for Niels Lohmann21@see https://github.com/nlohmann22@since version 1.0.023*/24namespace nlohmann { inline namespace json_abi_v3_11_3 {2526/*!27@brief default JSONSerializer template argument2829This serializer ignores the template arguments and uses ADL30([argument-dependent lookup](https://en.cppreference.com/w/cpp/language/adl))31for serialization.32*/33template<typename T = void, typename SFINAE = void>34struct adl_serializer;3536template<template<typename U, typename V, typename... Args> class ObjectType =37std::map,38template<typename U, typename... Args> class ArrayType = std::vector,39class StringType = std::string, class BooleanType = bool,40class NumberIntegerType = std::int64_t,41class NumberUnsignedType = std::uint64_t,42class NumberFloatType = double,43template<typename U> class AllocatorType = std::allocator,44template<typename T, typename SFINAE = void> class JSONSerializer =45adl_serializer,46class BinaryType = std::vector<std::uint8_t>, // cppcheck-suppress syntaxError47class CustomBaseClass = void>48class basic_json;4950/// @brief JSON Pointer defines a string syntax for identifying a specific value within a JSON document51/// @sa https://json.nlohmann.me/api/json_pointer/52template<typename RefStringType>53class json_pointer;5455/*!56@brief default specialization57@sa https://json.nlohmann.me/api/json/58*/59using json = basic_json<>;6061/// @brief a minimal map-like container that preserves insertion order62/// @sa https://json.nlohmann.me/api/ordered_map/63template<class Key, class T, class IgnoredLess, class Allocator>64struct ordered_map;6566/// @brief specialization that maintains the insertion order of object keys67/// @sa https://json.nlohmann.me/api/ordered_json/68using ordered_json = basic_json<nlohmann::ordered_map>;6970NLOHMANN_JSON_NAMESPACE_END7172#endif // INCLUDE_NLOHMANN_JSON_FWD_HPP_737475