cereal
A C++11 library for serialization
|
Strongly typed derivation of PolymorphicCaster. More...
#include </home/shane/workspace/cereal/include/cereal/details/polymorphic_impl.hpp>
Public Member Functions | |
PolymorphicVirtualCaster () | |
Inserts an entry in the polymorphic casting map for this pairing. More... | |
const void * | downcast (void const *const ptr) const override |
Performs the proper downcast with the templated types. | |
void * | upcast (void *const ptr) const override |
Performs the proper upcast with the templated types. | |
std::shared_ptr< void > | upcast (std::shared_ptr< void > const &ptr) const override |
Performs the proper upcast with the templated types (shared_ptr version) | |
Public Member Functions inherited from cereal::detail::PolymorphicCaster | |
PolymorphicCaster (const PolymorphicCaster &)=default | |
PolymorphicCaster & | operator= (const PolymorphicCaster &)=default |
PolymorphicCaster (PolymorphicCaster &&) CEREAL_NOEXCEPT | |
PolymorphicCaster & | operator= (PolymorphicCaster &&) CEREAL_NOEXCEPT |
Strongly typed derivation of PolymorphicCaster.
|
inline |
Inserts an entry in the polymorphic casting map for this pairing.
Creates an explicit mapping between Base and Derived in both upwards and downwards directions, allowing void pointers to either to be properly cast assuming dynamic type information is available