dox/Common/vtkReferenceCount.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00023
#ifndef __vtkReferenceCount_h
00024
#define __vtkReferenceCount_h
00025
00026
#include "vtkObject.h"
00027
00028 class VTK_COMMON_EXPORT vtkReferenceCount :
public vtkObject
00029 {
00030
public:
00031
static vtkReferenceCount *
New();
00032
00033 vtkTypeRevisionMacro(vtkReferenceCount,
vtkObject);
00034
void PrintSelf(ostream& os,
vtkIndent indent);
00035
00036
protected:
00037 vtkReferenceCount();
00038 ~vtkReferenceCount();
00039
00040
private:
00041 vtkReferenceCount(
const vtkReferenceCount&);
00042
void operator=(
const vtkReferenceCount&);
00043 };
00044
00045
00046
#endif
00047