Files
ArduinoJson/include/ArduinoJson/JsonPair.hpp

20 lines
340 B
C++
Raw Normal View History

// Copyright Benoit Blanchon 2014-2017
2014-10-25 15:55:58 +02:00
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
// 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 {
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
}