]> git.proxmox.com Git - ceph.git/blob - ceph/src/Beast/include/beast/http/fields.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / Beast / include / beast / http / fields.hpp
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_FIELDS_HPP
9 #define BEAST_HTTP_FIELDS_HPP
10
11 #include <beast/config.hpp>
12 #include <beast/http/basic_fields.hpp>
13 #include <memory>
14
15 namespace beast {
16 namespace http {
17
18 /// A typical HTTP header fields container
19 using fields =
20 basic_fields<std::allocator<char>>;
21
22 } // http
23 } // beast
24
25 #endif