Files
thirdparty-ArduinoJson/src/ArduinoJson/Serialization/WriterSelector.hpp
2019-09-13 14:10:21 +02:00

18 lines
401 B
C++

// ArduinoJson - arduinojson.org
// Copyright Benoit Blanchon 2014-2019
// MIT License
#pragma once
#include <ArduinoJson/Namespace.hpp>
namespace ARDUINOJSON_NAMESPACE {
template <typename TDestination, typename Enable = void>
struct WriterSelector {
// by default, assume destination implements the Writer concept
typedef TDestination& writer_type;
};
} // namespace ARDUINOJSON_NAMESPACE