VTK
vtkNew< T > Class Template Reference

Allocate and hold a VTK object. More...

#include <vtkNew.h>

Inheritance diagram for vtkNew< T >:
Inheritance graph
[legend]

List of all members.

Public Member Functions

 vtkNew ()
 ~vtkNew ()
T * operator-> () const
T * GetPointer () const

Detailed Description

template<class T>
class vtkNew< T >

Allocate and hold a VTK object.

vtkNew is a class template that on construction allocates and initializes an instance of its template argument using T::New(). It assumes ownership of one reference during its lifetime, and calls T->Delete() on destruction.

Automatic casting is intentionally unavailable, calling GetPointer() will return a raw pointer. Users of this method should ensure that they do not return this pointer if the vtkNew will go out of scope without incrementing its reference count using vtkSmartPointer or similar.

 vtkNew<vtkClass> a;
 a->SomeMethod();

 vtkSmartPointer<vtkClass> b = a.GetPointer();
 b->SomeOtherMethod();

It should be noted that vtkNew is not a drop in replacement for vtkSmartPointer as it is not implicitly cast to a pointer in functions requiring a pointer. The GetPointer() method must be used, for example,

See also:
vtkSmartPointer vtkWeakPointer
Examples:
vtkNew (Examples)
Tests:
vtkNew (Tests)

Definition at line 66 of file vtkNew.h.


Constructor & Destructor Documentation

template<class T>
vtkNew< T >::vtkNew ( ) [inline]

Create a new T on construction.

Definition at line 75 of file vtkNew.h.

template<class T>
vtkNew< T >::~vtkNew ( ) [inline]

Deletes reference to instance of T on destruction.

Definition at line 83 of file vtkNew.h.


Member Function Documentation

template<class T>
T* vtkNew< T >::operator-> ( ) const [inline]

Enable pointer-like dereference syntax. Returns a pointer to the contained object.

Definition at line 97 of file vtkNew.h.

template<class T>
T* vtkNew< T >::GetPointer ( ) const [inline]

Get a raw pointer to the contained object. When using this function be careful that the reference count does not drop to 0 when using the pointer returned. This will happen when the vtkNew object goes out of scope for example.

Definition at line 108 of file vtkNew.h.


The documentation for this class was generated from the following file: