Files
thirdparty-ArduinoJson/include/ArduinoJson/Internals/JsonValueContent.hpp
2014-10-26 21:18:09 +01:00

24 lines
386 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;
JsonArrayImpl* asArray;
JsonObjectImpl* asObject;
};
}
}