Back to home page

EIC code displayed by LXR

 
 

    


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

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_BINARY_SERIALIZATION_HPP
0009 #define BOOST_MYSQL_IMPL_INTERNAL_PROTOCOL_BINARY_SERIALIZATION_HPP
0010 
0011 #include <boost/mysql/field_view.hpp>
0012 
0013 #include <boost/mysql/detail/config.hpp>
0014 
0015 #include <boost/mysql/impl/internal/protocol/serialization.hpp>
0016 
0017 namespace boost {
0018 namespace mysql {
0019 namespace detail {
0020 
0021 BOOST_MYSQL_DECL
0022 std::size_t get_size(field_view input) noexcept;
0023 
0024 BOOST_MYSQL_DECL
0025 void serialize(serialization_context& ctx, field_view input) noexcept;
0026 
0027 }  // namespace detail
0028 }  // namespace mysql
0029 }  // namespace boost
0030 
0031 #ifdef BOOST_MYSQL_HEADER_ONLY
0032 #include <boost/mysql/impl/internal/protocol/binary_serialization.ipp>
0033 #endif
0034 
0035 #endif