44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
//
|
|
// Copyright (c) 2019-2023 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#ifndef BOOST_MYSQL_TEST_UNIT_PCH_HPP
|
|
#define BOOST_MYSQL_TEST_UNIT_PCH_HPP
|
|
|
|
#include <boost/asio/async_result.hpp>
|
|
#include <boost/asio/buffer.hpp>
|
|
#include <boost/asio/compose.hpp>
|
|
#include <boost/asio/post.hpp>
|
|
#include <boost/asio/ssl/stream.hpp>
|
|
#include <boost/asio/ssl/stream_base.hpp>
|
|
#include <boost/config.hpp>
|
|
#include <boost/core/detail/string_view.hpp>
|
|
#include <boost/core/span.hpp>
|
|
#include <boost/mp11.hpp>
|
|
#include <boost/system/error_category.hpp>
|
|
#include <boost/system/error_code.hpp>
|
|
#include <boost/system/system_error.hpp>
|
|
#include <boost/test/unit_test.hpp>
|
|
#include <boost/throw_exception.hpp>
|
|
#include <boost/variant2/variant.hpp>
|
|
|
|
#include <cassert>
|
|
#include <chrono>
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <iterator>
|
|
#include <ostream>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <tuple>
|
|
#include <type_traits>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#endif
|