Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-13 09:54:58

0001 //
0002 // Copyright (c) 2019-2025 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
0003 //
0004 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0005 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 
0008 #ifndef BOOST_MYSQL_IMPL_ENGINE_IMPL_INSTANTIATIONS_IPP
0009 #define BOOST_MYSQL_IMPL_ENGINE_IMPL_INSTANTIATIONS_IPP
0010 
0011 #pragma once
0012 
0013 #include <boost/mysql/detail/engine_stream_adaptor.hpp>
0014 
0015 // To be included only in src.hpp
0016 
0017 #ifdef BOOST_MYSQL_SEPARATE_COMPILATION
0018 template class boost::mysql::detail::engine_impl<
0019     boost::mysql::detail::engine_stream_adaptor<boost::asio::ssl::stream<boost::asio::ip::tcp::socket>>>;
0020 template class boost::mysql::detail::engine_impl<
0021     boost::mysql::detail::engine_stream_adaptor<boost::asio::ip::tcp::socket>>;
0022 #endif
0023 
0024 #endif