Files
ArduinoJson/include/ArduinoJson/JsonPair.hpp

20 lines
331 B
C++
Raw Normal View History

2014-10-25 15:55:58 +02:00
// Copyright Benoit Blanchon 2014
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
#pragma once
2014-10-26 21:18:09 +01:00
#include "JsonValue.hpp"
2014-10-27 22:50:50 +01:00
#include "Internals/JsonObjectNode.hpp"
2014-10-25 15:55:58 +02:00
namespace ArduinoJson {
2014-10-29 14:24:34 +01:00
struct JsonPair {
JsonPair(const char* k) : key(k) {}
2014-10-27 22:50:50 +01:00
2014-10-29 14:24:34 +01:00
const char* const key;
JsonValue value;
2014-10-25 15:55:58 +02:00
};
}