VTK
Classes | Macros | Functions
vtkWeakPointer.h File Reference
#include "vtkWeakPointerBase.h"
Include dependency graph for vtkWeakPointer.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  vtkWeakPointer< T >
 a weak reference to a vtkObject. More...
 

Macros

#define VTK_WEAK_POINTER_DEFINE_OPERATOR(op)
 

Functions

template<class T >
ostream & operator<< (ostream &os, const vtkWeakPointer< T > &p)
 Compare smart pointer values. More...
 

Macro Definition Documentation

#define VTK_WEAK_POINTER_DEFINE_OPERATOR (   op)
Value:
template <class T> \
inline bool \
operator op (const vtkWeakPointer<T>& l, const vtkWeakPointer<T>& r) \
{ \
return (l.GetPointer() op r.GetPointer()); \
} \
template <class T> \
inline bool operator op (T* l, const vtkWeakPointer<T>& r) \
{ \
return (l op r.GetPointer()); \
} \
template <class T> \
inline bool operator op (const vtkWeakPointer<T>& l, T* r) \
{ \
return (l.GetPointer() op r); \
}
a weak reference to a vtkObject.

Definition at line 162 of file vtkWeakPointer.h.

Function Documentation

template<class T >
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 195 of file vtkWeakPointer.h.