cereal
A C++11 library for serialization
|
A structure holding a map from type name strings to input serializer functions. More...
#include </build/libcereal-SAfJB3/libcereal-1.3.2+dfsg/include/cereal/details/polymorphic_impl.hpp>
Classes | |
struct | Serializers |
Struct containing the serializer functions for all pointer types. More... | |
Public Types | |
typedef std::function< void(void *, std::shared_ptr< void > &, std::type_info const &)> | SharedSerializer |
Shared ptr serializer function. More... | |
typedef std::function< void(void *, std::unique_ptr< void, EmptyDeleter< void > > &, std::type_info const &)> | UniqueSerializer |
Unique ptr serializer function. | |
Public Attributes | |
std::map< std::string, Serializers > | map |
A map of serializers for pointers of all registered types. | |
A structure holding a map from type name strings to input serializer functions.
A static object of this map should be created for each registered archive type, containing entries for every registered type that describe how to properly cast the type to its real type in polymorphic scenarios for shared_ptr, weak_ptr, and unique_ptr.
typedef std::function<void(void*, std::shared_ptr<void> &, std::type_info const &)> cereal::detail::InputBindingMap< Archive >::SharedSerializer |
Shared ptr serializer function.
Serializer functions return nothing and take an archive as their first parameter (will be cast properly inside the function, a shared_ptr (or unique_ptr for the unique case) of any base type, and the type id of said base type as the third parameter. Internally it will properly be loaded and cast to the correct type.