1 #ifndef YOBAPERL_POINTER_HPP 2 #define YOBAPERL_POINTER_HPP 4 #include "yobaperl/common.hpp" 5 #include "yobaperl/perl_exception.hpp" 18 class YOBAPERL_EXPORT
Pointer :
public std::shared_ptr<T>
22 : std::shared_ptr<T>() {}
25 : std::shared_ptr<T>(ptr) {}
27 Pointer(
const std::shared_ptr<T> & to_copy)
28 : std::shared_ptr<T>(to_copy) {}
30 Pointer(std::shared_ptr<T> && to_move)
31 : std::shared_ptr<T>(to_move) {}
36 auto result = std::dynamic_pointer_cast<T2>(*this);
38 throw std::runtime_error(
"Ptr cast error");
55 #endif // YOBAPERL_POINTER_HPP
shared_ptr with automatic dynamic cast