ParamsStream::ParamsStream

Constructors

Synopses

Declared in <serialize.h>

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

ParamsStream(
    SubStream&& substream,
    Params const& params);
» more...

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);
» more...

Parameters

NameDescription
substreamThe underlying stream to wrap.
paramsThe parameter set to attach.
sThe underlying stream to wrap.
params1The outermost parameter set to attach.
params2The next parameter set to attach.