VTK
vtkArrayIterator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkArrayIterator.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 =========================================================================*/
15 
46 #ifndef vtkArrayIterator_h
47 #define vtkArrayIterator_h
48 
49 #include "vtkCommonCoreModule.h" // For export macro
50 #include "vtkObject.h"
51 class vtkAbstractArray;
52 class VTKCOMMONCORE_EXPORT vtkArrayIterator : public vtkObject
53 {
54 public:
55  vtkTypeMacro(vtkArrayIterator, vtkObject);
56  void PrintSelf(ostream& os, vtkIndent indent) override;
57 
65  virtual void Initialize(vtkAbstractArray* array) = 0;
66 
71  virtual int GetDataType()=0;
72 
73 protected:
75  ~vtkArrayIterator() override;
76 
77 private:
78  vtkArrayIterator(const vtkArrayIterator&) = delete;
79  void operator=(const vtkArrayIterator&) = delete;
80 };
81 
82 
83 #endif
84 
abstract base class for most VTK objects
Definition: vtkObject.h:59
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Abstract superclass for all arrays.
a simple class to control print indentation
Definition: vtkIndent.h:39
Abstract superclass to iterate over elements in an vtkAbstractArray.