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