Unserialize

Unserialize into a newly constructed object owned by a shared_ptr.

Synopsis

Declared in <serialize.h>

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

Parameters

NameDescription
osThe input stream.
pThe shared pointer to populate.