forked from bblanchon/ArduinoJson
Epic refactoring in progress
This commit is contained in:
23
include/ArduinoJson/Internals/JsonSerializer.hpp
Normal file
23
include/ArduinoJson/Internals/JsonSerializer.hpp
Normal file
@ -0,0 +1,23 @@
|
||||
// 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&);
|
||||
};
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user