mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 00:38:27 +01:00
23 lines
516 B
C++
23 lines
516 B
C++
// ArduinoJson - https://arduinojson.org
|
|
// Copyright © 2014-2022, Benoit BLANCHON
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
#include <ArduinoJson/Namespace.hpp>
|
|
|
|
namespace ARDUINOJSON_NAMESPACE {
|
|
|
|
template <typename T, typename Enable = void>
|
|
struct Converter;
|
|
|
|
// clang-format off
|
|
template <typename T1, typename T2>
|
|
class InvalidConversion; // Error here? See https://arduinojson.org/v6/invalid-conversion/
|
|
// clang-format on
|
|
|
|
template <typename T>
|
|
struct ConverterNeedsWriteableRef;
|
|
|
|
} // namespace ARDUINOJSON_NAMESPACE
|