mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-02 08:48:27 +01:00
Moved forward declarations in a single .hpp file
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ArduinoJson/Internals/JsonWriter.hpp"
|
||||
#include "JsonWriter.hpp"
|
||||
|
||||
namespace ArduinoJson {
|
||||
namespace Internals {
|
||||
|
||||
@@ -6,11 +6,10 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace ArduinoJson {
|
||||
class JsonBuffer;
|
||||
#include "../ForwardDeclarations.hpp"
|
||||
|
||||
namespace ArduinoJson {
|
||||
namespace Internals {
|
||||
class JsonWriter;
|
||||
|
||||
class JsonNode {
|
||||
enum JsonNodeType {
|
||||
|
||||
@@ -6,12 +6,12 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../ForwardDeclarations.hpp"
|
||||
#include "JsonNode.hpp"
|
||||
|
||||
namespace ArduinoJson {
|
||||
class JsonValue;
|
||||
|
||||
namespace Internals {
|
||||
|
||||
class JsonNodeWrapper {
|
||||
friend class JsonValue;
|
||||
|
||||
|
||||
@@ -6,13 +6,11 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../ForwardDeclarations.hpp"
|
||||
#include "JsonNode.hpp"
|
||||
|
||||
namespace ArduinoJson {
|
||||
class JsonBuffer;
|
||||
|
||||
namespace Internals {
|
||||
class JsonNode;
|
||||
|
||||
class JsonParser {
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user