#include <vtkSmartPointer.h>
Inheritance diagram for vtkSmartPointer< T >:
vtkSmartPointer is a class template that provides automatic casting for objects held by the vtkSmartPointerBase superclass.
Definition at line 31 of file vtkSmartPointer.h.
Public Member Functions | |
vtkSmartPointer () | |
vtkSmartPointer (T *r) | |
vtkSmartPointer (const vtkSmartPointerBase &r) | |
vtkSmartPointer & | operator= (T *r) |
vtkSmartPointer & | operator= (const vtkSmartPointerBase &r) |
T * | GetPointer () const |
operator T * () const | |
T & | operator * () const |
T * | operator-> () const |
void | TakeReference (T *t) |
Static Public Member Functions | |
static vtkSmartPointer< T > | New () |
static vtkSmartPointer< T > | NewInstance (T *t) |
static vtkSmartPointer< T > | Take (T *t) |
Protected Member Functions | |
vtkSmartPointer (T *r, const NoReference &n) |
|
Initialize smart pointer to NULL. Definition at line 35 of file vtkSmartPointer.h. |
|
Initialize smart pointer to given object. Definition at line 38 of file vtkSmartPointer.h. |
|
Initialize smart pointer with a new reference to the same object referenced by given smart pointer. Definition at line 42 of file vtkSmartPointer.h. |
|
Definition at line 165 of file vtkSmartPointer.h. |
|
Assign object to reference. This removes any reference to an old object. Definition at line 47 of file vtkSmartPointer.h. References vtkSmartPointerBase::operator=(). |
|
Assign object to reference. This removes any reference to an old object. Reimplemented from vtkSmartPointerBase. Definition at line 57 of file vtkSmartPointer.h. References vtkSmartPointerBase::operator=(). |
|
Get the contained pointer. Reimplemented from vtkSmartPointerBase. Definition at line 66 of file vtkSmartPointer.h. References vtkSmartPointerBase::Object. |
|
Get the contained pointer. Definition at line 74 of file vtkSmartPointer.h. References vtkSmartPointerBase::Object. |
|
Dereference the pointer and return a reference to the contained object. Definition at line 83 of file vtkSmartPointer.h. References vtkSmartPointerBase::Object. |
|
Provides normal pointer target member access using operator ->. Definition at line 91 of file vtkSmartPointer.h. References vtkSmartPointerBase::Object. |
|
Transfer ownership of one reference to the given VTK object to this smart pointer. This does not increment the reference count of the object, but will decrement it later. The caller is effectively passing ownership of one reference to the smart pointer. This is useful for code like: vtkSmartPointer<vtkFoo> foo; foo.TakeReference(bar->NewFoo()); The input argument may not be another smart pointer. Definition at line 105 of file vtkSmartPointer.h. |
|
Create an instance of a VTK object. Definition at line 113 of file vtkSmartPointer.h. |
|
Create a new instance of the given VTK object. Definition at line 121 of file vtkSmartPointer.h. |
|
Transfer ownership of one reference to the given VTK object to a new smart pointer. The returned smart pointer does not increment the reference count of the object on construction but will decrement it on destruction. The caller is effectively passing ownership of one reference to the smart pointer. This is useful for code like: vtkSmartPointer<vtkFoo> foo = vtkSmartPointer<vtkFoo>::Take(bar->NewFoo()); The input argument may not be another smart pointer. Definition at line 136 of file vtkSmartPointer.h. |