Files
thirdparty-ArduinoJson/include/ArduinoJson/Internals/JsonObjectNode.hpp
Benoit Blanchon ca0fbf00f9 Cleaning up...
2014-10-31 12:16:32 +01:00

22 lines
340 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(const char* k) : pair(k), next(NULL) {}
JsonPair pair;
JsonObjectNode* next;
};
}
}