1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #ifndef BOOST_MYSQL_FIELD_KIND_HPP
- #define BOOST_MYSQL_FIELD_KIND_HPP
- #include <boost/mysql/detail/config.hpp>
- #include <iosfwd>
- namespace boost {
- namespace mysql {
- enum class field_kind
- {
-
-
- null = 0,
-
- int64,
-
- uint64,
-
-
- string,
-
-
- blob,
-
- float_,
-
- double_,
-
- date,
-
- datetime,
-
- time
- };
- BOOST_MYSQL_DECL
- std::ostream& operator<<(std::ostream& os, field_kind v);
- }
- }
- #ifdef BOOST_MYSQL_HEADER_ONLY
- #include <boost/mysql/impl/field_kind.ipp>
- #endif
- #endif
|