VTK
9.0.1
Common
DataModel
vtkGenericCellIterator.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkGenericCellIterator.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
=========================================================================*/
33
#ifndef vtkGenericCellIterator_h
34
#define vtkGenericCellIterator_h
35
36
#include "vtkCommonDataModelModule.h"
// For export macro
37
#include "
vtkObject.h
"
38
39
class
vtkGenericAdaptorCell
;
40
41
class
VTKCOMMONDATAMODEL_EXPORT
vtkGenericCellIterator
:
public
vtkObject
42
{
43
public
:
45
48
vtkTypeMacro(
vtkGenericCellIterator
,
vtkObject
);
49
void
PrintSelf
(ostream& os,
vtkIndent
indent)
override
;
51
55
virtual
void
Begin() = 0;
56
60
virtual
vtkTypeBool
IsAtEnd() = 0;
61
66
virtual
vtkGenericAdaptorCell
* NewCell() = 0;
67
75
virtual
void
GetCell(
vtkGenericAdaptorCell
* c) = 0;
76
83
virtual
vtkGenericAdaptorCell
* GetCell() = 0;
84
89
virtual
void
Next() = 0;
90
91
protected
:
92
vtkGenericCellIterator
();
93
~
vtkGenericCellIterator
()
override
;
94
95
private
:
96
vtkGenericCellIterator
(
const
vtkGenericCellIterator
&) =
delete
;
97
void
operator=(
const
vtkGenericCellIterator
&) =
delete
;
98
};
99
100
#endif
vtkObject
abstract base class for most VTK objects
Definition:
vtkObject.h:62
vtkObject::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkGenericCellIterator
iterator used to traverse cells
Definition:
vtkGenericCellIterator.h:41
vtkTypeBool
int vtkTypeBool
Definition:
vtkABI.h:69
vtkGenericAdaptorCell
defines cell interface
Definition:
vtkGenericAdaptorCell.h:91
vtkIndent
a simple class to control print indentation
Definition:
vtkIndent.h:33
vtkObject.h
Generated on Sat Jun 12 2021 07:23:29 for VTK by
1.8.14