// // 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_HTTP_IMPL_MESSAGE_PARSER_IPP #define BEAST_HTTP_IMPL_MESSAGE_PARSER_IPP namespace beast { namespace http { template template message_parser:: message_parser(Arg1&& arg1, ArgN&&... argn) : m_(std::forward(arg1), std::forward(argn)...) { } template template message_parser:: message_parser(header_parser< isRequest, Fields>&& parser, Args&&... args) : base_type(std::move(static_cast>&>(parser))) , m_(parser.release(), std::forward(args)...) { } } // http } // beast #endif