engine_impl_instantiations.ipp 803 B

123456789101112131415161718192021222324
  1. //
  2. // Copyright (c) 2019-2024 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. #ifndef BOOST_MYSQL_IMPL_ENGINE_IMPL_INSTANTIATIONS_IPP
  8. #define BOOST_MYSQL_IMPL_ENGINE_IMPL_INSTANTIATIONS_IPP
  9. #pragma once
  10. #include <boost/mysql/detail/engine_stream_adaptor.hpp>
  11. // To be included only in src.hpp
  12. #ifdef BOOST_MYSQL_SEPARATE_COMPILATION
  13. template class boost::mysql::detail::engine_impl<
  14. boost::mysql::detail::engine_stream_adaptor<boost::asio::ssl::stream<boost::asio::ip::tcp::socket>>>;
  15. template class boost::mysql::detail::engine_impl<
  16. boost::mysql::detail::engine_stream_adaptor<boost::asio::ip::tcp::socket>>;
  17. #endif
  18. #endif