12 #ifndef HELIB_CLONEDPTR_H
13 #define HELIB_CLONEDPTR_H
65 static X*
apply(
const X* x) {
return x->clone(); }
77 static X*
apply(
const X* x) {
return new X(*x); }
80 #ifndef NO_MEMBER_TEMPLATES
82 #define CLONED_PTR_TEMPLATE_MEMBERS(CLONED_PTR_TYPE) \
84 template <typename Y> \
85 CLONED_PTR_TYPE(const CLONED_PTR_TYPE<Y>& r) \
89 template <typename Y> \
90 CLONED_PTR_TYPE& operator=(const CLONED_PTR_TYPE<Y>& r) \
101 #define CLONED_PTR_TEMPLATE_MEMBERS(CLONED_PTR_TYPE)
105 #define CLONED_PTR_DECLARE(CLONED_PTR_TYPE, CLONED_PTR_INIT) \
107 template <typename X, typename Cloner = CLONED_PTR_INIT<X>> \
108 class CLONED_PTR_TYPE \
111 typedef X element_type; \
113 explicit CLONED_PTR_TYPE(X* p = 0) : ptr(p) {} \
114 ~CLONED_PTR_TYPE() { delete ptr; } \
115 CLONED_PTR_TYPE(const CLONED_PTR_TYPE& r) { copy(r.ptr); } \
117 CLONED_PTR_TYPE& operator=(const CLONED_PTR_TYPE& r) \
134 CLONED_PTR_TEMPLATE_MEMBERS(CLONED_PTR_TYPE) \
136 const X& operator*() const { return *ptr; } \
137 X& operator*() { return *ptr; } \
139 const X* operator->() const { return ptr; } \
140 X* operator->() { return ptr; } \
142 bool null() const { return ptr == 0; } \
144 const X* get_ptr() const { return ptr; } \
145 X* get_ptr() { return ptr; } \
147 void swap(CLONED_PTR_TYPE& r) \
158 void copy(X* p) { ptr = (p ? Cloner::apply(p) : 0); } \
162 CLONED_PTR_DECLARE(cloned_ptr, deep_clone)
165 CLONED_PTR_DECLARE(copied_ptr, shallow_clone)
169 template <
typename X,
typename Cloner>
170 void swap(cloned_ptr<X, Cloner>& x, cloned_ptr<X, Cloner>& y)
175 template <
typename X,
typename Cloner>
176 void swap(copied_ptr<X, Cloner>& x, copied_ptr<X, Cloner>& y)
183 #endif // ifndef HELIB_CLONEDPTR_H
static X * apply(const X *x)
Definition: clonedPtr.h:65
Definition: apiAttributes.h:21
Deep copy: initialize with clone.
Definition: clonedPtr.h:63
static X * apply(const X *x)
Definition: clonedPtr.h:77
Shallow copy: initialize with copy constructor.
Definition: clonedPtr.h:75
void swap(cloned_ptr< X, Cloner > &x, cloned_ptr< X, Cloner > &y)
Definition: clonedPtr.h:170