VTK
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 
40 
41 class VTKCOMMONDATAMODEL_EXPORT vtkGenericCellIterator : public vtkObject
42 {
43 public:
45 
49  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
51 
55  virtual void Begin() = 0;
56 
60  virtual int 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:
93  ~vtkGenericCellIterator() VTK_OVERRIDE;
94 
95 private:
96  vtkGenericCellIterator(const vtkGenericCellIterator&) VTK_DELETE_FUNCTION;
97  void operator=(const vtkGenericCellIterator&) VTK_DELETE_FUNCTION;
98 };
99 
100 #endif
abstract base class for most VTK objects
Definition: vtkObject.h:53
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
iterator used to traverse cells
defines cell interface
a simple class to control print indentation
Definition: vtkIndent.h:33