mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 16:14:05 +01:00
23 lines
438 B
C++
23 lines
438 B
C++
// Copyright Benoit Blanchon 2014
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
|
|
#pragma once
|
|
|
|
#include "../ForwardDeclarations.hpp"
|
|
|
|
namespace ArduinoJson {
|
|
namespace Internals {
|
|
|
|
class JsonSerializer {
|
|
public:
|
|
static writeTo(JsonValue& value, JsonWriter&);
|
|
|
|
private:
|
|
inline void writeArrayTo(JsonValue& value, JsonWriter&);
|
|
inline void writeObjectTo(JsonValue& value, JsonWriter&);
|
|
};
|
|
}
|
|
} |