forked from boostorg/beast
17 lines
405 B
C++
17 lines
405 B
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_ZLIB_HPP
|
|
#define BEAST_ZLIB_HPP
|
|
|
|
#include <beast/config.hpp>
|
|
|
|
#include <beast/zlib/deflate_stream.hpp>
|
|
#include <beast/zlib/inflate_stream.hpp>
|
|
|
|
#endif
|