forked from bblanchon/ArduinoJson
15 lines
233 B
C++
15 lines
233 B
C++
#include "JsonBuffer.h"
|
|
//#include "JsonNode.h"
|
|
#include "JsonObject.h"
|
|
|
|
|
|
JsonObject JsonBuffer::createObject()
|
|
{
|
|
allocateNode();
|
|
return JsonObject(this);
|
|
}
|
|
|
|
void JsonBuffer::createNode()
|
|
{
|
|
allocateNode();
|
|
} |