You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.9 KiB
C
53 lines
1.9 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkGarbageCollectorManager.h
|
||
|
|
||
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
All rights reserved.
|
||
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
||
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
||
|
=========================================================================*/
|
||
|
/**
|
||
|
* @class vtkGarbageCollectorManager
|
||
|
* @brief Manages the vtkGarbageCollector singleton.
|
||
|
*
|
||
|
* vtkGarbageCollectorManager should be included in any translation unit
|
||
|
* that will use vtkGarbageCollector or that implements the singleton
|
||
|
* pattern. It makes sure that the vtkGarbageCollector singleton is created
|
||
|
* before and destroyed after it is used.
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkGarbageCollectorManager_h
|
||
|
#define vtkGarbageCollectorManager_h
|
||
|
|
||
|
#include "vtkCommonCoreModule.h" // For export macro
|
||
|
#include "vtkSystemIncludes.h"
|
||
|
|
||
|
#include "vtkDebugLeaksManager.h" // DebugLeaks is around longer than
|
||
|
// the garbage collector.
|
||
|
|
||
|
class VTKCOMMONCORE_EXPORT vtkGarbageCollectorManager
|
||
|
{
|
||
|
public:
|
||
|
vtkGarbageCollectorManager();
|
||
|
~vtkGarbageCollectorManager();
|
||
|
|
||
|
private:
|
||
|
vtkGarbageCollectorManager(const vtkGarbageCollectorManager&);
|
||
|
vtkGarbageCollectorManager& operator=(const vtkGarbageCollectorManager&);
|
||
|
};
|
||
|
|
||
|
// This instance will show up in any translation unit that uses
|
||
|
// vtkGarbageCollector or that has a singleton. It will make sure
|
||
|
// vtkGarbageCollector is initialized before it is used finalized when
|
||
|
// it is done being used.
|
||
|
static vtkGarbageCollectorManager vtkGarbageCollectorManagerInstance;
|
||
|
|
||
|
#endif
|
||
|
// VTK-HeaderTest-Exclude: vtkGarbageCollectorManager.h
|