]> git.proxmox.com Git - ceph.git/blob - ceph/src/Beast/include/beast/http/impl/header_parser.ipp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / Beast / include / beast / http / impl / header_parser.ipp
1 //
2 // Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco 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
8 #ifndef BEAST_HTTP_IMPL_HEADER_PARSER_IPP
9 #define BEAST_HTTP_IMPL_HEADER_PARSER_IPP
10
11 namespace beast {
12 namespace http {
13
14 template<bool isRequest, class Fields>
15 template<class... Args>
16 header_parser<isRequest, Fields>::
17 header_parser(Args&&... args)
18 : h_(std::forward<Args>(args)...)
19 {
20 }
21
22 } // http
23 } // beast
24
25 #endif