Yoba Perl
pointer.hpp
1 #ifndef YOBAPERL_POINTER_HPP
2 #define YOBAPERL_POINTER_HPP
3 
4 #include "yobaperl/common.hpp"
5 #include "yobaperl/perl_exception.hpp"
6 
7 namespace yoba {
8 
9 
10 
17 template<typename T>
18 class YOBAPERL_EXPORT Pointer : public std::shared_ptr<T>
19 {
20 public:
21  Pointer()
22  : std::shared_ptr<T>() {}
23 
24  Pointer(T * ptr)
25  : std::shared_ptr<T>(ptr) {}
26 
27  Pointer(const std::shared_ptr<T> & to_copy)
28  : std::shared_ptr<T>(to_copy) {}
29 
30  Pointer(std::shared_ptr<T> && to_move)
31  : std::shared_ptr<T>(to_move) {}
32 
33  template<typename T2>
34  operator Pointer<T2>()
35  {
36  auto result = std::dynamic_pointer_cast<T2>(*this);
37  if(!result)
38  throw std::runtime_error("Ptr cast error");
39  return result;
40  }
41 };
42 
43 
44 
50 
51 
52 
53 } // namespace yoba
54 
55 #endif // YOBAPERL_POINTER_HPP
Definition: array.cpp:5
shared_ptr with automatic dynamic cast
Definition: pointer.hpp:18