Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
http::message::message (14 of 14 overloads)

Construct a message.

Synopsis
template<
    class... BodyArgs,
    class... FieldsArgs>
message(
    std::piecewise_construct_t,
    std::tuple< BodyArgs... > body_args,
    std::tuple< FieldsArgs... > fields_args);
Description Parameters

Name

Description

body_args

A tuple forwarded as a parameter pack to the body constructor.

fields_args

A tuple forwarded as a parameter pack to the Fields constructor.


PrevUpHomeNext