deserialize_binary_field.hpp 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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_INTERNAL_PROTOCOL_DESERIALIZE_BINARY_FIELD_HPP
  8. #define BHO_MYSQL_IMPL_INTERNAL_PROTOCOL_DESERIALIZE_BINARY_FIELD_HPP
  9. #include <asio2/bho/mysql/field_view.hpp>
  10. #include <asio2/bho/mysql/metadata.hpp>
  11. #include <asio2/bho/mysql/detail/config.hpp>
  12. #include <asio2/bho/mysql/impl/internal/protocol/serialization.hpp>
  13. namespace bho {
  14. namespace mysql {
  15. namespace detail {
  16. BHO_MYSQL_DECL
  17. deserialize_errc deserialize_binary_field(
  18. deserialization_context& ctx,
  19. const metadata& meta,
  20. field_view& output
  21. );
  22. } // namespace detail
  23. } // namespace mysql
  24. } // namespace bho
  25. #ifdef BHO_MYSQL_HEADER_ONLY
  26. #include <asio2/bho/mysql/impl/internal/protocol/deserialize_binary_field.ipp>
  27. #endif
  28. #endif /* INCLUDE_BHO_MYSQL_DETAIL_PROTOCOL_BINARY_DESERIALIZATION_HPP_ */