File serializer.hpp¶
Defines
-
CEREAL_THREAD_SAFE
¶
All templated types in this namespaces are elementary types: int, double, float, char*, …
Typedefs
- #include <serializer.hpp>
Public Functions
serialize an (almost) arbitrary instance to a string.
The method uses cereal internally and the instance must implement a serialize function. See for details: https://uscilab.github.io/cereal/ Supplementary requirements:
Serializable must also have a default constructor.
All instances of Serializable must be of the same size. (e.g. vectors must be of fixed size) The generated and returned string is a private member of the Serializer instance. Successive calls to serialize overwrite this string.
- Parameters:
instance – to serialize to a string
Restore the instance of serializable based on the string data, which should have been generated via the serialize function.
- Parameters:
the – serialized instance
instance – of Serializable to be restored
Public Static Functions
Returns the serialized size (i.e.
the size of the string) of an instance of Serializable
Private Members