mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-15 19:42:12 +02:00
Test that adding values to the JsonObject increase the size of the buffer
This commit is contained in:
15
srcs/JsonBuffer.cpp
Normal file
15
srcs/JsonBuffer.cpp
Normal file
@ -0,0 +1,15 @@
|
||||
#include "JsonBuffer.h"
|
||||
//#include "JsonNode.h"
|
||||
#include "JsonObject.h"
|
||||
|
||||
|
||||
JsonObject JsonBuffer::createObject()
|
||||
{
|
||||
allocateNode();
|
||||
return JsonObject(this);
|
||||
}
|
||||
|
||||
void JsonBuffer::createNode()
|
||||
{
|
||||
allocateNode();
|
||||
}
|
Reference in New Issue
Block a user