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