2017-01-06 21:07:34 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2017
|
2014-10-25 15:55:58 +02:00
|
|
|
// MIT License
|
|
|
|
//
|
|
|
|
// Arduino JSON library
|
|
|
|
// https://github.com/bblanchon/ArduinoJson
|
2016-01-07 22:35:12 +01:00
|
|
|
// If you like this project, please add a star!
|
2014-10-25 15:55:58 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-11-04 09:51:25 +01:00
|
|
|
#include "JsonVariant.hpp"
|
2014-10-25 15:55:58 +02:00
|
|
|
|
|
|
|
namespace ArduinoJson {
|
2014-10-30 14:03:33 +01:00
|
|
|
|
2014-11-06 16:58:24 +01:00
|
|
|
// A key value pair for JsonObject.
|
2014-10-29 14:24:34 +01:00
|
|
|
struct JsonPair {
|
2016-02-14 16:18:13 +01:00
|
|
|
const char* key;
|
2014-11-04 09:51:25 +01:00
|
|
|
JsonVariant value;
|
2014-10-25 15:55:58 +02:00
|
|
|
};
|
2014-10-31 12:27:33 +01:00
|
|
|
}
|