resultset_encoding.hpp 596 B

12345678910111213141516171819202122232425
  1. //
  2. // Copyright (c) 2019-2024 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 BOOST_MYSQL_DETAIL_RESULTSET_ENCODING_HPP
  8. #define BOOST_MYSQL_DETAIL_RESULTSET_ENCODING_HPP
  9. namespace boost {
  10. namespace mysql {
  11. namespace detail {
  12. enum class resultset_encoding
  13. {
  14. text,
  15. binary
  16. };
  17. } // namespace detail
  18. } // namespace mysql
  19. } // namespace boost
  20. #endif /* INCLUDE_BOOST_MYSQL_DETAIL_NETWORK_ALGORITHMS_COMMON_HPP_ */