mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-02 00:38:26 +01:00
20 lines
631 B
C++
20 lines
631 B
C++
// ArduinoJson - arduinojson.org
|
|
// Copyright Benoit Blanchon 2014-2020
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
#include <ArduinoJson/Operators/VariantCasts.hpp>
|
|
#include <ArduinoJson/Operators/VariantComparisons.hpp>
|
|
#include <ArduinoJson/Operators/VariantOr.hpp>
|
|
#include <ArduinoJson/Operators/VariantShortcuts.hpp>
|
|
|
|
namespace ARDUINOJSON_NAMESPACE {
|
|
|
|
template <typename TImpl>
|
|
class VariantOperators : public VariantCasts<TImpl>,
|
|
public VariantComparisons<TImpl>,
|
|
public VariantOr<TImpl>,
|
|
public VariantShortcuts<TImpl> {};
|
|
} // namespace ARDUINOJSON_NAMESPACE
|