Epic refactoring in progress

This commit is contained in:
Benoit Blanchon
2014-10-26 21:18:09 +01:00
parent cdf3777aa8
commit e0980292ef
29 changed files with 477 additions and 541 deletions

View 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&);
};
}
}