mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-18 04:52:22 +02:00
24 lines
378 B
C++
24 lines
378 B
C++
// Copyright Benoit Blanchon 2014
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
|
|
#pragma once
|
|
|
|
#include "../ForwardDeclarations.hpp"
|
|
|
|
namespace ArduinoJson {
|
|
namespace Internals {
|
|
|
|
union JsonValueContent {
|
|
bool asBoolean;
|
|
double asDouble;
|
|
long asInteger;
|
|
const char* asString;
|
|
JsonArray* asArray;
|
|
JsonObject* asObject;
|
|
};
|
|
}
|
|
}
|