Back to home page

EIC code displayed by LXR

 
 

    


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

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_DETAIL_RESULTSET_ENCODING_HPP
0009 #define BOOST_MYSQL_DETAIL_RESULTSET_ENCODING_HPP
0010 
0011 namespace boost {
0012 namespace mysql {
0013 namespace detail {
0014 
0015 enum class resultset_encoding
0016 {
0017     text,
0018     binary
0019 };
0020 
0021 }  // namespace detail
0022 }  // namespace mysql
0023 }  // namespace boost
0024 
0025 #endif /* INCLUDE_BOOST_MYSQL_DETAIL_NETWORK_ALGORITHMS_COMMON_HPP_ */