Skip to content

Commit a0f68a7

Browse files
committed
Stub for flatten algorithm.
1 parent bd118e7 commit a0f68a7

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#ifndef BOOST_NETWORK_PROTOCOL_HTTP_ALGORITHMS_FLATTEN_HPP_20120326
2+
#define BOOST_NETWORK_PROTOCOL_HTTP_ALGORITHMS_FLATTEN_HPP_20120326
3+
4+
// Copyright 2012 Dean Michael Berris <dberris@google.com>.
5+
// Copyright 2012 Google, Inc.
6+
// Distributed under the Boost Software License, Version 1.0.
7+
// (See accompanying file LICENSE_1_0.txt or copy at
8+
// http://www.boost.org/LICENSE_1_0.txt)
9+
10+
#include <vector>
11+
#include <boost/asio/buffer.hpp>
12+
13+
namespace boost { namespace network { namespace http {
14+
15+
class response;
16+
17+
void flatten(response const &response_, std::vector<asio::const_buffer> &buffers);
18+
19+
} // namespace http
20+
21+
} // namespace network
22+
23+
} // namespace boost
24+
25+
#endif // BOOST_NETWORK_PROTOCOL_HTTP_ALGORITHMS_FLATTEN_HPP_20120326

0 commit comments

Comments
 (0)