mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 12:02:14 +02:00
21 lines
332 B
C++
21 lines
332 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* const key;
|
|
JsonValue value;
|
|
};
|
|
}
|