|
VTK
9.6.20260314
|
#include "vtkCommonCoreModule.h"#include "vtkGarbageCollectorManager.h"#include "vtkObject.h"#include <mutex>Go to the source code of this file.
Classes | |
| class | vtkGarbageCollector |
| Detect and break reference loops. More... | |
Functions | |
| void VTKCOMMONCORE_EXPORT | vtkGarbageCollectorReportInternal (vtkGarbageCollector *, vtkObjectBase *, void *, const char *) |
| void VTKCOMMONCORE_EXPORT | vtkGarbageCollectorReport (vtkGarbageCollector *collector, vtkSmartPointerBase &ptr, const char *desc) |
| Function to report a reference held by a smart pointer to a collector. | |
| template<class T> | |
| void | vtkGarbageCollectorReport (vtkGarbageCollector *collector, vtkNew< T > &ptr, const char *desc) |
| Function to report a reference held by a vtkNew to a collector. | |
| template<class T> | |
| void | vtkGarbageCollectorReport (vtkGarbageCollector *collector, T *&ptr, const char *desc) |
| Function to report a reference held by a raw pointer to a collector. | |
| void VTKCOMMONCORE_EXPORT vtkGarbageCollectorReportInternal | ( | vtkGarbageCollector * | , |
| vtkObjectBase * | , | ||
| void * | , | ||
| const char * | ) |
| void VTKCOMMONCORE_EXPORT vtkGarbageCollectorReport | ( | vtkGarbageCollector * | collector, |
| vtkSmartPointerBase & | ptr, | ||
| const char * | desc ) |
Function to report a reference held by a smart pointer to a collector.
| void vtkGarbageCollectorReport | ( | vtkGarbageCollector * | collector, |
| vtkNew< T > & | ptr, | ||
| const char * | desc ) |
Function to report a reference held by a vtkNew to a collector.
Definition at line 196 of file vtkGarbageCollector.h.
| void vtkGarbageCollectorReport | ( | vtkGarbageCollector * | collector, |
| T *& | ptr, | ||
| const char * | desc ) |
Function to report a reference held by a raw pointer to a collector.
Definition at line 206 of file vtkGarbageCollector.h.