mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 16:14:05 +01:00
20 lines
325 B
C++
20 lines
325 B
C++
// Copyright Benoit Blanchon 2014
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
|
|
#pragma once
|
|
|
|
#include "JsonValue.hpp"
|
|
#include "Internals/JsonObjectNode.hpp"
|
|
|
|
namespace ArduinoJson {
|
|
|
|
struct JsonPair {
|
|
JsonPair(const char* k) : key(k) {}
|
|
|
|
const char* key;
|
|
JsonValue value;
|
|
};
|
|
} |