forked from bblanchon/ArduinoJson
Cleaning up...
This commit is contained in:
@ -8,20 +8,11 @@
|
||||
|
||||
namespace ArduinoJson {
|
||||
class JsonArray;
|
||||
class JsonArrayConstIterator;
|
||||
class JsonArrayIterator;
|
||||
class JsonBuffer;
|
||||
class JsonObject;
|
||||
class JsonObjectConstIterator;
|
||||
class JsonObjectIterator;
|
||||
struct JsonPair;
|
||||
class JsonValue;
|
||||
|
||||
namespace Internals {
|
||||
class IndentedPrint;
|
||||
class JsonArrayNode;
|
||||
class JsonObjectNode;
|
||||
class JsonParser;
|
||||
class JsonWriter;
|
||||
}
|
||||
}
|
||||
|
@ -7,13 +7,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "../JsonValue.hpp"
|
||||
#include "../JsonBuffer.hpp"
|
||||
|
||||
namespace ArduinoJson {
|
||||
namespace Internals {
|
||||
|
||||
class JsonArrayNode {
|
||||
public:
|
||||
struct JsonArrayNode {
|
||||
JsonArrayNode() : next(NULL) {}
|
||||
|
||||
JsonArrayNode* next;
|
||||
|
@ -7,13 +7,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "../JsonPair.hpp"
|
||||
#include "../JsonBuffer.hpp"
|
||||
|
||||
namespace ArduinoJson {
|
||||
namespace Internals {
|
||||
|
||||
class JsonObjectNode {
|
||||
public:
|
||||
struct JsonObjectNode {
|
||||
JsonObjectNode(const char* k) : pair(k), next(NULL) {}
|
||||
|
||||
JsonPair pair;
|
||||
|
@ -6,7 +6,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../ForwardDeclarations.hpp"
|
||||
#include "../JsonBuffer.hpp"
|
||||
|
||||
namespace ArduinoJson {
|
||||
|
@ -6,7 +6,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ForwardDeclarations.hpp"
|
||||
#include "Internals/JsonObjectNode.hpp"
|
||||
|
||||
namespace ArduinoJson {
|
||||
|
@ -6,7 +6,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ForwardDeclarations.hpp"
|
||||
#include "Internals/JsonObjectNode.hpp"
|
||||
|
||||
namespace ArduinoJson {
|
||||
|
@ -6,7 +6,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ForwardDeclarations.hpp"
|
||||
#include "JsonBuffer.hpp"
|
||||
|
||||
namespace ArduinoJson {
|
||||
|
Reference in New Issue
Block a user