2017-11-07 20:42:50 +01:00
|
|
|
// ArduinoJson - arduinojson.org
|
2018-01-05 09:20:01 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2018
|
2016-06-22 21:41:19 +02:00
|
|
|
// MIT License
|
|
|
|
|
2016-06-23 21:27:24 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-10-02 16:54:05 +02:00
|
|
|
#include "ArduinoJson/Namespace.hpp"
|
2018-06-01 09:16:45 +02: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"
|
|
|
|
#include "ArduinoJson/Array/ArraySubscript.hpp"
|
|
|
|
#include "ArduinoJson/Object/ObjectImpl.hpp"
|
|
|
|
#include "ArduinoJson/Object/ObjectSubscript.hpp"
|
|
|
|
#include "ArduinoJson/Variant/VariantAsImpl.hpp"
|
|
|
|
#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
|
|
|
|
|
|
|
namespace ArduinoJson {
|
2018-11-30 17:53:54 +01:00
|
|
|
typedef ARDUINOJSON_NAMESPACE::ArrayRef JsonArray;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::ArrayConstRef JsonArrayConst;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::Float JsonFloat;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::Integer JsonInteger;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::ObjectRef JsonObject;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::ObjectConstRef JsonObjectConst;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::Pair JsonPair;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::UInt JsonUInt;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::VariantRef JsonVariant;
|
|
|
|
typedef ARDUINOJSON_NAMESPACE::VariantConstRef JsonVariantConst;
|
2018-10-02 16:54:05 +02:00
|
|
|
using ARDUINOJSON_NAMESPACE::DeserializationError;
|
|
|
|
using ARDUINOJSON_NAMESPACE::DynamicJsonDocument;
|
2018-11-30 17:53:54 +01:00
|
|
|
using ARDUINOJSON_NAMESPACE::Key;
|
2018-10-02 16:54:05 +02:00
|
|
|
using ARDUINOJSON_NAMESPACE::serialized;
|
|
|
|
using ARDUINOJSON_NAMESPACE::StaticJsonDocument;
|
|
|
|
} // namespace ArduinoJson
|