mysql.hpp 514 B

123456789101112131415161718
  1. //
  2. // Copyright (c) 2019-2023 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_HPP
  8. #define BOOST_MYSQL_HPP
  9. #include <boost/mysql/connection.hpp>
  10. #include <boost/mysql/tcp.hpp>
  11. #include <boost/mysql/tcp_ssl.hpp>
  12. #include <boost/mysql/throw_on_error.hpp>
  13. #include <boost/mysql/unix.hpp>
  14. #include <boost/mysql/unix_ssl.hpp>
  15. #endif