123456789101112131415161718192021222324 |
- #ifndef BHO_MYSQL_TCP_HPP
- #define BHO_MYSQL_TCP_HPP
- #include <asio2/bho/mysql/connection.hpp>
- #include <asio/ip/tcp.hpp>
- namespace bho {
- namespace mysql {
- using tcp_connection = connection<asio::ip::tcp::socket>;
- }
- }
- #endif
|