Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:42:41

0001 //
0002 // Copyright (c) 2019-2023 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_INTERNAL_PROTOCOL_DESERIALIZE_BINARY_FIELD_HPP
0009 #define BOOST_MYSQL_IMPL_INTERNAL_PROTOCOL_DESERIALIZE_BINARY_FIELD_HPP
0010 
0011 #include <boost/mysql/field_view.hpp>
0012 #include <boost/mysql/metadata.hpp>
0013 
0014 #include <boost/mysql/detail/config.hpp>
0015 
0016 #include <boost/mysql/impl/internal/protocol/serialization.hpp>
0017 
0018 namespace boost {
0019 namespace mysql {
0020 namespace detail {
0021 
0022 BOOST_MYSQL_DECL
0023 deserialize_errc deserialize_binary_field(
0024     deserialization_context& ctx,
0025     const metadata& meta,
0026     field_view& output
0027 );
0028 
0029 }  // namespace detail
0030 }  // namespace mysql
0031 }  // namespace boost
0032 
0033 #ifdef BOOST_MYSQL_HEADER_ONLY
0034 #include <boost/mysql/impl/internal/protocol/deserialize_binary_field.ipp>
0035 #endif
0036 
0037 #endif /* INCLUDE_BOOST_MYSQL_DETAIL_PROTOCOL_BINARY_DESERIALIZATION_HPP_ */