#include "vtkWeakPointerBase.h"
Go to the source code of this file.
Classes | |
class | vtkWeakPointer< T > |
a weak reference to a vtkObject. More... | |
Defines | |
#define | VTK_WEAK_POINTER_DEFINE_OPERATOR(op) |
Functions | |
template<class T> | |
ostream & | operator<< (ostream &os, const vtkWeakPointer< T > &p) |
#define VTK_WEAK_POINTER_DEFINE_OPERATOR | ( | op | ) |
Value:
template <class T> \ inline vtkstd_bool \ operator op (const vtkWeakPointer<T>& l, const vtkWeakPointer<T>& r) \ { \ return (l.GetPointer() op r.GetPointer()); \ } \ template <class T> \ inline vtkstd_bool operator op (T* l, const vtkWeakPointer<T>& r) \ { \ return (l op r.GetPointer()); \ } \ template <class T> \ inline vtkstd_bool operator op (const vtkWeakPointer<T>& l, T* r) \ { \ return (l.GetPointer() op r); \ }
Definition at line 124 of file vtkWeakPointer.h.
ostream& operator<< | ( | ostream & | os, | |
const vtkWeakPointer< T > & | p | |||
) | [inline] |
Compare smart pointer values.
Streaming operator to print smart pointer like regular pointers.
Definition at line 154 of file vtkWeakPointer.h.