VTK  9.2.5
vtkTestNewVar.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTestNewVar.h
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=========================================================================*/
23#ifndef vtkTestNewVar_h
24#define vtkTestNewVar_h
25
26#include "vtkNew.h"
27#include "vtkObject.h"
28
29class vtkPoints2D;
30
32{
33public:
34 static vtkTestNewVar* New();
35
36 vtkTypeMacro(vtkTestNewVar, vtkObject);
37 void PrintSelf(ostream& os, vtkIndent indent) override;
38
43
50
58
59protected:
61 ~vtkTestNewVar() override;
62
64
65private:
66 vtkTestNewVar(const vtkTestNewVar&) = delete;
67 void operator=(const vtkTestNewVar&) = delete;
68};
69
70#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
Allocate and hold a VTK object.
Definition: vtkNew.h:62
abstract base class for most VTK objects
Definition: vtkObject.h:63
represent and manipulate 2D points
Definition: vtkPoints2D.h:37
Tests instantiations of the vtkNew class template.
Definition: vtkTestNewVar.h:32
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkTestNewVar() override
static vtkTestNewVar * New()
vtkIdType GetPointsRefCount()
Get the reference count for the points object.
vtkObject * GetPoints2()
This is just for testing - return the points as a vtkObject so that it can be assigned to a vtkSmartP...
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:63
int vtkIdType
Definition: vtkType.h:332