Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-16 08:29:32

0001 //
0002 // Copyright (c) 2024 Mohammad Nejati
0003 //
0004 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0005 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 // Official repository: https://github.com/boostorg/beast
0008 //
0009 
0010 #ifndef BOOST_BEAST_HTTP_FIELDS_FWD_HPP
0011 #define BOOST_BEAST_HTTP_FIELDS_FWD_HPP
0012 
0013 #include <memory>
0014 
0015 namespace boost {
0016 namespace beast {
0017 namespace http {
0018 
0019 template<class Allocator>
0020 class basic_fields;
0021 
0022 #ifndef BOOST_BEAST_DOXYGEN
0023 using fields = basic_fields<std::allocator<char>>;
0024 #endif
0025 
0026 } // http
0027 } // beast
0028 } // boost
0029 
0030 #endif