Files
thirdparty-ArduinoJson/include/ArduinoJson/Internals/JsonVariantContent.hpp
2014-11-04 09:51:25 +01:00

26 lines
375 B
C++

// Copyright Benoit Blanchon 2014
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
#pragma once
namespace ArduinoJson {
class JsonArray;
class JsonObject;
namespace Internals {
union JsonVariantContent {
bool asBoolean;
double asDouble;
long asLong;
const char* asString;
JsonArray* asArray;
JsonObject* asObject;
};
}
}