123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef BOOST_MYSQL_UNDERLYING_ROW_HPP
- #define BOOST_MYSQL_UNDERLYING_ROW_HPP
- #include <boost/mysql/detail/typing/row_traits.hpp>
- #ifdef BOOST_MYSQL_CXX14
- namespace boost {
- namespace mysql {
- template <BOOST_MYSQL_STATIC_ROW StaticRow>
- using underlying_row_t =
- #ifdef BOOST_MYSQL_DOXYGEN
- __see_below__
- #else
- detail::underlying_row_t<StaticRow>
- #endif
- ;
- }
- }
- #endif
- #endif
|