Serialize any object that provides a Serialize member function.
Synopsis
Declared in <serialize.h>
template<
typename Stream,
typename T>
requires Serializable<T, Stream>
void
Serialize(
Stream& os,
T const& a);
Parameters
Name |
Description |
os |
The output stream. |
a |
The object to serialize. |
Created with MrDocs