Files
thirdparty-ArduinoJson/include/ArduinoJson/JsonPair.hpp
2014-11-05 09:31:29 +01:00

18 lines
251 B
C++

// Copyright Benoit Blanchon 2014
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
#pragma once
#include "JsonVariant.hpp"
namespace ArduinoJson {
struct JsonPair {
const char* key;
JsonVariant value;
};
}