any_stream_impl.ipp 621 B

1234567891011121314151617181920
  1. //
  2. // Copyright (c) 2019-2023 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 BHO_MYSQL_IMPL_ANY_STREAM_IMPL_IPP
  8. #define BHO_MYSQL_IMPL_ANY_STREAM_IMPL_IPP
  9. #pragma once
  10. #include <asio2/bho/mysql/detail/any_stream_impl.hpp>
  11. #ifdef BHO_MYSQL_SEPARATE_COMPILATION
  12. template class bho::mysql::detail::any_stream_impl<asio::ssl::stream<asio::ip::tcp::socket>>;
  13. template class bho::mysql::detail::any_stream_impl<asio::ip::tcp::socket>;
  14. #endif
  15. #endif