Constructors

Synopses

Declared in <serialize.h>

Construct a params stream wrapping a substream and a single parameter set.

ParamsStream(
    SubStream&& substream,
    Params const& params);

Construct a nested params stream from a substream and several parameter sets.

template<
    typename NestedSubstream,
    typename Params1,
    typename Params2,
    typename... NestedParams>
ParamsStream(
    NestedSubstream&& s,
    Params1 const& params1,
    Params2 const& params2,
    NestedParams const&... params);

Parameters

Name

Description

substream

The underlying stream to wrap.

params

The parameter set to attach.

s

The underlying stream to wrap.

params1

The outermost parameter set to attach.

params2

The next parameter set to attach.

Created with MrDocs