14 #ifndef vtkSmartPointerBase_h
15 #define vtkSmartPointerBase_h
17 #include "vtkCommonCoreModule.h"
20 VTK_ABI_NAMESPACE_BEGIN
97 #define VTK_SMART_POINTER_BASE_DEFINE_OPERATOR(op) \
98 inline bool operator op(const vtkSmartPointerBase& l, const vtkSmartPointerBase& r) \
100 return (static_cast<void*>(l.GetPointer()) op static_cast<void*>(r.GetPointer())); \
102 inline bool operator op(vtkObjectBase* l, const vtkSmartPointerBase& r) \
104 return (static_cast<void*>(l) op static_cast<void*>(r.GetPointer())); \
106 inline bool operator op(const vtkSmartPointerBase& l, vtkObjectBase* r) \
108 return (static_cast<void*>(l.GetPointer()) op static_cast<void*>(r)); \
120 #undef VTK_SMART_POINTER_BASE_DEFINE_OPERATOR
127 VTK_ABI_NAMESPACE_END
#define VTK_SMART_POINTER_BASE_DEFINE_OPERATOR(op)
vtkSmartPointerBase(vtkSmartPointerBase &&r) noexcept
Move the pointee from r into this and reset @ r.
Detect and break reference loops.
abstract base class for most VTK objects
Non-templated superclass for vtkSmartPointer.
VTKCOMMONCORE_EXPORT ostream & operator<<(ostream &os, const vtkSmartPointerBase &p)
Compare smart pointer values.
vtkObjectBase * GetPointer() const noexcept
Get the contained pointer.