Files
thirdparty-ArduinoJson/include/ArduinoJson/Internals/JsonObjectNode.hpp
2014-11-05 09:31:29 +01:00

22 lines
321 B
C++

// Copyright Benoit Blanchon 2014
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
#pragma once
#include "../JsonPair.hpp"
namespace ArduinoJson {
namespace Internals {
struct JsonObjectNode {
JsonObjectNode() : next(NULL) {}
JsonPair content;
JsonObjectNode* next;
};
}
}