2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2022-01-01 10:00:54 +01:00
|
|
|
// Copyright © 2014-2022, Benoit BLANCHON
|
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"
|
|
|
|
|
2021-12-26 18:42:54 +01:00
|
|
|
// Include Arduino.h before stdlib.h to avoid conflict with atexit()
|
|
|
|
// https://github.com/bblanchon/ArduinoJson/pull/1693#issuecomment-1001060240
|
|
|
|
#if ARDUINOJSON_ENABLE_ARDUINO_STRING || ARDUINOJSON_ENABLE_ARDUINO_STREAM || \
|
|
|
|
ARDUINOJSON_ENABLE_ARDUINO_PRINT || ARDUINOJSON_ENABLE_PROGMEM
|
|
|
|
# include <Arduino.h>
|
|
|
|
#endif
|
|
|
|
|
2020-03-25 08:37:57 +01:00
|
|
|
#if !ARDUINOJSON_DEBUG
|
2021-06-16 21:08:01 +02: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
|
|
|
|
2022-12-19 12:10:58 +01:00
|
|
|
#include "ArduinoJson/Array/JsonArray.hpp"
|
2022-12-19 12:20:05 +01:00
|
|
|
#include "ArduinoJson/Object/JsonObject.hpp"
|
2022-12-19 12:05:08 +01:00
|
|
|
#include "ArduinoJson/Variant/JsonVariantConst.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
|
|
|
|
2019-01-29 14:09:09 +01:00
|
|
|
#include "ArduinoJson/Array/ElementProxy.hpp"
|
2022-12-19 12:10:58 +01:00
|
|
|
#include "ArduinoJson/Array/JsonArrayImpl.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"
|
2022-12-19 12:20:05 +01:00
|
|
|
#include "ArduinoJson/Object/JsonObjectImpl.hpp"
|
2019-01-29 14:09:09 +01:00
|
|
|
#include "ArduinoJson/Object/MemberProxy.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 {
|
2022-12-19 12:10:58 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonArray;
|
2022-12-19 11:19:15 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonArrayConst;
|
2022-12-19 11:43:20 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonFloat;
|
2022-12-19 11:46:44 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonInteger;
|
2022-12-19 12:20:05 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonObject;
|
2022-12-19 11:37:08 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonObjectConst;
|
2022-12-19 12:16:35 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonPair;
|
|
|
|
using ARDUINOJSON_NAMESPACE::JsonPairConst;
|
2022-12-19 12:02:48 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonString;
|
2022-12-19 12:14:16 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonUInt;
|
2022-12-19 12:05:08 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::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
|