summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/Data/JsonVariantContent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/lib/ArduinoJson/Data/JsonVariantContent.hpp')
-rw-r--r--include/lib/ArduinoJson/Data/JsonVariantContent.hpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/lib/ArduinoJson/Data/JsonVariantContent.hpp b/include/lib/ArduinoJson/Data/JsonVariantContent.hpp
deleted file mode 100644
index c525a60..0000000
--- a/include/lib/ArduinoJson/Data/JsonVariantContent.hpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2018
-// MIT License
-
-#pragma once
-
-#include "JsonFloat.hpp"
-#include "JsonInteger.hpp"
-
-namespace ArduinoJson {
-
-// Forward declarations
-class JsonArray;
-class JsonObject;
-
-namespace Internals {
-// A union that defines the actual content of a JsonVariant.
-// The enum JsonVariantType determines which member is in use.
-union JsonVariantContent {
- JsonFloat asFloat; // used for double and float
- JsonUInt asInteger; // used for bool, char, short, int and longs
- const char* asString; // asString can be null
- JsonArray* asArray; // asArray cannot be null
- JsonObject* asObject; // asObject cannot be null
-};
-}
-}