Serialize the object pointed to by a unique_ptr.

Synopsis

Declared in <serialize.h>

template<
    typename Stream,
    typename T>
void
Serialize(
    Stream& os,
    std::unique_ptr<T const> const& p);

Parameters

Name

Description

os

The output stream.

p

The unique pointer whose pointee is serialized.

Created with MrDocs