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 
27 class vtkPoints2D;
28 
29 class vtkTestNewVar : public vtkObject
30 {
31 public:
32  static vtkTestNewVar * New();
33 
34  vtkTypeMacro(vtkTestNewVar, vtkObject)
35  void PrintSelf(ostream& os, vtkIndent indent) override;
36 
41 
47  vtkObject * GetPoints();
48 
56 
57 protected:
58  vtkTestNewVar();
59  ~vtkTestNewVar() override;
60 
62 
63 private:
64  vtkTestNewVar(const vtkTestNewVar&) = delete;
65  void operator=(const vtkTestNewVar&) = delete;
66 };
67 
68 #endif
vtkPoints2D
represent and manipulate 2D points
Definition: vtkPoints2D.h:36
vtkTestNewVar::vtkTestNewVar
vtkTestNewVar()
vtkTestNewVar::GetPoints
vtkObject * GetPoints()
This is just for testing - return the points as a vtkObject so that it can be assigned to a vtkSmartP...
vtkIdType
int vtkIdType
Definition: vtkType.h:347
vtkTestNewVar
Definition: vtkTestNewVar.h:29
vtkObject
abstract base class for most VTK objects
Definition: vtkObject.h:59
vtkTestNewVar::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkNew< vtkPoints2D >
vtkTestNewVar::Points
vtkNew< vtkPoints2D > Points
Definition: vtkTestNewVar.h:61
vtkTestNewVar::GetPointsRefCount
vtkIdType GetPointsRefCount()
Get the reference count for the points object.
vtkObject.h
vtkTestNewVar::~vtkTestNewVar
~vtkTestNewVar() override
vtkNew.h
vtkTestNewVar::GetPoints2
vtkObject * GetPoints2()
This is just for testing - return the points as a vtkObject so that it can be assigned to a vtkSmartP...
vtkTestNewVar::New
static vtkTestNewVar * New()