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-25 15:55:58 +02:00
|
|
|
|
|
|
|
namespace ArduinoJson {
|
2014-10-30 14:03:33 +01:00
|
|
|
|
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-30 21:51:59 +01:00
|
|
|
const char* key;
|
2014-10-29 14:24:34 +01:00
|
|
|
JsonValue value;
|
2014-10-25 15:55:58 +02:00
|
|
|
};
|
2014-10-31 12:27:33 +01:00
|
|
|
}
|