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-04-17 21:27:45 +02:00
|
|
|
#include "ArduinoJson/DynamicJsonDocument.hpp"
|
2018-07-02 09:35:21 +02:00
|
|
|
#include "ArduinoJson/StaticJsonDocument.hpp"
|
|
|
|
|
|
|
|
#include "ArduinoJson/JsonObjectImpl.hpp"
|
|
|
|
|
|
|
|
#include "ArduinoJson/JsonArray.hpp"
|
|
|
|
#include "ArduinoJson/JsonObject.hpp"
|
|
|
|
|
|
|
|
#include "ArduinoJson/JsonArrayImpl.hpp"
|
|
|
|
#include "ArduinoJson/JsonArraySubscript.hpp"
|
|
|
|
#include "ArduinoJson/JsonObjectSubscript.hpp"
|
|
|
|
#include "ArduinoJson/JsonVariantImpl.hpp"
|
|
|
|
|
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 {
|
|
|
|
using ARDUINOJSON_NAMESPACE::DeserializationError;
|
|
|
|
using ARDUINOJSON_NAMESPACE::DynamicJsonDocument;
|
|
|
|
using ARDUINOJSON_NAMESPACE::JsonArray;
|
|
|
|
using ARDUINOJSON_NAMESPACE::JsonFloat;
|
|
|
|
using ARDUINOJSON_NAMESPACE::JsonInteger;
|
2018-10-04 11:16:23 +02:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonKey;
|
2018-10-02 16:54:05 +02:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonObject;
|
2018-10-04 11:16:23 +02:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonPair;
|
2018-10-02 16:54:05 +02:00
|
|
|
using ARDUINOJSON_NAMESPACE::JsonUInt;
|
|
|
|
using ARDUINOJSON_NAMESPACE::JsonVariant;
|
|
|
|
using ARDUINOJSON_NAMESPACE::serialized;
|
|
|
|
using ARDUINOJSON_NAMESPACE::StaticJsonDocument;
|
|
|
|
} // namespace ArduinoJson
|