VTK
vtkTestNewVar.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTestNewVar.cxx
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
21#ifndef vtkTestNewVar_h
22#define vtkTestNewVar_h
23
24#include "vtkObject.h"
25#include "vtkNew.h"
26
27class vtkPoints2D;
28
30{
31public:
32 static vtkTestNewVar * New();
33
34 vtkTypeMacro(vtkTestNewVar, vtkObject)
35 void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
36
41
48
49protected:
52
54
55private:
56 vtkTestNewVar(const vtkTestNewVar&) VTK_DELETE_FUNCTION;
57 void operator=(const vtkTestNewVar&) VTK_DELETE_FUNCTION;
58};
59
60#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
Allocate and hold a VTK object.
Definition: vtkNew.h:68
abstract base class for most VTK objects
Definition: vtkObject.h:60
represent and manipulate 2D points
Definition: vtkPoints2D.h:37
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkTestNewVar * New()
vtkIdType GetPointsRefCount()
Get the reference count for the points object.
vtkObject * GetPoints()
This is just for testing - return the points as a vtkObject so that it can be assigned to a vtkSmartP...
vtkNew< vtkPoints2D > Points
Definition: vtkTestNewVar.h:53
int vtkIdType
Definition: vtkType.h:287