27 lines
570 B
C++
27 lines
570 B
C++
// ArduinoJson - arduinojson.org
|
|
// Copyright Benoit Blanchon 2014-2018
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
#include "JsonArray.hpp"
|
|
#include "JsonArraySubscript.hpp"
|
|
#include "JsonObject.hpp"
|
|
|
|
namespace ArduinoJson {
|
|
|
|
inline JsonArray &JsonArray::createNestedArray() {
|
|
if (!_buffer) return JsonArray::invalid();
|
|
JsonArray &array = _buffer->createArray();
|
|
add(array);
|
|
return array;
|
|
}
|
|
|
|
inline JsonObject &JsonArray::createNestedObject() {
|
|
if (!_buffer) return JsonObject::invalid();
|
|
JsonObject &object = _buffer->createObject();
|
|
add(object);
|
|
return object;
|
|
}
|
|
}
|