forked from boostorg/beast
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
C++
//
|
|
// Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco 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 BEAST_CORE_HPP
|
|
#define BEAST_CORE_HPP
|
|
|
|
#include <beast/config.hpp>
|
|
|
|
#include <beast/core/async_result.hpp>
|
|
#include <beast/core/bind_handler.hpp>
|
|
#include <beast/core/buffer_cat.hpp>
|
|
#include <beast/core/buffer_prefix.hpp>
|
|
#include <beast/core/buffered_read_stream.hpp>
|
|
#include <beast/core/buffers_adapter.hpp>
|
|
#include <beast/core/consuming_buffers.hpp>
|
|
#include <beast/core/drain_buffer.hpp>
|
|
#include <beast/core/error.hpp>
|
|
#include <beast/core/flat_buffer.hpp>
|
|
#include <beast/core/handler_alloc.hpp>
|
|
#include <beast/core/handler_ptr.hpp>
|
|
#include <beast/core/multi_buffer.hpp>
|
|
#include <beast/core/ostream.hpp>
|
|
#include <beast/core/read_size.hpp>
|
|
#include <beast/core/static_buffer.hpp>
|
|
#include <beast/core/static_string.hpp>
|
|
#include <beast/core/string_param.hpp>
|
|
#include <beast/core/string.hpp>
|
|
#include <beast/core/type_traits.hpp>
|
|
|
|
#endif
|