2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2021-01-25 09:14:15 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2021
|
2016-06-22 21:41:19 +02:00
|
|
|
// MIT License
|
|
|
|
|
2016-06-23 21:27:24 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-03-20 17:22:34 +01:00
|
|
|
#include "ArduinoJson/Configuration.hpp"
|
|
|
|
|
2020-03-25 08:37:57 +01:00
|
|
|
#if !ARDUINOJSON_DEBUG
|
2019-03-01 17:31:55 +01:00
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang system_header
|
|
|
|
#elif defined __GNUC__
|
|
|
|
#pragma GCC system_header
|
|
|
|
#endif
|
2019-03-05 09:19:22 +01:00
|
|
|
#endif
|
2019-03-01 17:31:55 +01:00
|
|
|
|
2018-11-30 17:53:54 +01:00
|
|
|
#include "ArduinoJson/Array/ArrayRef.hpp"
|
|
|
|
#include "ArduinoJson/Object/ObjectRef.hpp"
|
|
|
|
#include "ArduinoJson/Variant/VariantRef.hpp"
|
2018-07-02 09:35:21 +02:00
|
|
|
|
2018-11-30 17:53:54 +01:00
|
|
|
#include "ArduinoJson/Document/DynamicJsonDocument.hpp"
|
|
|
|
#include "ArduinoJson/Document/StaticJsonDocument.hpp"
|
2018-11-16 10:26:59 +01:00
|
|
|
|
2018-11-30 17:53:54 +01:00
|
|
|
#include "ArduinoJson/Array/ArrayImpl.hpp"
|
2019-01-29 14:09:09 +01:00
|
|
|
#include "ArduinoJson/Array/ElementProxy.hpp"
|
2019-02-15 15:33:04 +01:00
|
|
|
#include "ArduinoJson/Array/Utilities.hpp"
|
2018-12-07 09:16:58 +01:00
|
|
|
#include "ArduinoJson/Collection/CollectionImpl.hpp"
|
2019-01-29 14:09:09 +01:00
|
|
|
#include "ArduinoJson/Object/MemberProxy.hpp"
|
2018-11-30 17:53:54 +01:00
|
|
|
#include "ArduinoJson/Object/ObjectImpl.hpp"
|
2021-03-20 14:52:47 +01:00
|
|
|
#include "ArduinoJson/Variant/ConverterImpl.hpp"
|
2020-06-13 15:42:04 +02:00
|
|
|
#include "ArduinoJson/Variant/VariantCompare.hpp"
|
2018-11-30 17:53:54 +01:00
|
|
|
#include "ArduinoJson/Variant/VariantImpl.hpp"
|
2018-07-02 09:35:21 +02:00
|
|
|
|
2018-05-29 08:31:17 +02:00
|
|
|
#include "ArduinoJson/Json/JsonDeserializer.hpp"
|
|
|
|
#include "ArduinoJson/Json/JsonSerializer.hpp"
|
|
|
|
#include "ArduinoJson/Json/PrettyJsonSerializer.hpp"
|
|
|
|
#include "ArduinoJson/MsgPack/MsgPackDeserializer.hpp"
|
|
|
|
#include "ArduinoJson/MsgPack/MsgPackSerializer.hpp"
|
2018-10-02 16:54:05 +02:00
|
|
|
|
2019-02-27 15:57:38 +01:00
|
|
|
#include "ArduinoJson/compatibility.hpp"
|
|
|
|
|
2018-10-02 16:54:05 +02:00
|
|
|
namespace ArduinoJson {
|
2018-11-30 17:53:54 +01:00
|
|
|
typedef ARDUINOJSON_NAMESPACE::ArrayConstRef JsonArrayConst;
|
2018-12-14 17:34:49 +01:00
|
|
|
typedef ARDUINOJSON_NAMESPACE::ArrayRef JsonArray;
|
2018-11-30 17:53:54 +01:00
|
|
|
typedef ARDUINOJSON_NAMESPACE::Float JsonFloat;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::Integer JsonInteger;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::ObjectConstRef JsonObjectConst;
|
2018-12-14 17:34:49 +01:00
|
|
|
typedef ARDUINOJSON_NAMESPACE::ObjectRef JsonObject;
|
2018-11-30 17:53:54 +01:00
|
|
|
typedef ARDUINOJSON_NAMESPACE::Pair JsonPair;
|
2020-02-13 16:58:23 +01:00
|
|
|
typedef ARDUINOJSON_NAMESPACE::PairConst JsonPairConst;
|
2018-12-14 17:34:49 +01:00
|
|
|
typedef ARDUINOJSON_NAMESPACE::String JsonString;
|
2018-11-30 17:53:54 +01:00
|
|
|
typedef ARDUINOJSON_NAMESPACE::UInt JsonUInt;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::VariantConstRef JsonVariantConst;
|
2018-12-14 17:34:49 +01:00
|
|
|
typedef ARDUINOJSON_NAMESPACE::VariantRef JsonVariant;
|
2019-03-17 21:48:10 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::BasicJsonDocument;
|
2019-02-15 15:33:04 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::copyArray;
|
2018-10-02 16:54:05 +02:00
|
|
|
using ARDUINOJSON_NAMESPACE::DeserializationError;
|
2018-12-14 17:34:49 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::deserializeJson;
|
|
|
|
using ARDUINOJSON_NAMESPACE::deserializeMsgPack;
|
2018-10-02 16:54:05 +02:00
|
|
|
using ARDUINOJSON_NAMESPACE::DynamicJsonDocument;
|
2019-01-15 12:04:48 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonDocument;
|
2019-08-10 11:11:21 +02:00
|
|
|
using ARDUINOJSON_NAMESPACE::measureJson;
|
2018-10-02 16:54:05 +02:00
|
|
|
using ARDUINOJSON_NAMESPACE::serialized;
|
2018-12-14 17:34:49 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::serializeJson;
|
|
|
|
using ARDUINOJSON_NAMESPACE::serializeJsonPretty;
|
|
|
|
using ARDUINOJSON_NAMESPACE::serializeMsgPack;
|
2018-10-02 16:54:05 +02:00
|
|
|
using ARDUINOJSON_NAMESPACE::StaticJsonDocument;
|
2019-01-19 14:45:16 +01:00
|
|
|
|
|
|
|
namespace DeserializationOption {
|
2020-02-11 21:56:50 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::Filter;
|
2019-01-19 14:45:16 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::NestingLimit;
|
2020-02-11 21:56:50 +01:00
|
|
|
} // namespace DeserializationOption
|
2018-10-02 16:54:05 +02:00
|
|
|
} // namespace ArduinoJson
|