mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-27 09:17:32 +02:00
18 lines
345 B
C++
18 lines
345 B
C++
// ArduinoJson - arduinojson.org
|
|
// Copyright Benoit Blanchon 2014-2018
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
#include "../Polyfills/type_traits.hpp"
|
|
|
|
namespace ArduinoJson {
|
|
namespace Internals {
|
|
|
|
class JsonVariantTag {};
|
|
|
|
template <typename T>
|
|
struct IsVariant : is_base_of<JsonVariantTag, T> {};
|
|
} // namespace Internals
|
|
} // namespace ArduinoJson
|