You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.9 KiB
C
64 lines
1.9 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkDataArrayCollectionIterator.h
|
||
|
|
||
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
All rights reserved.
|
||
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
||
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
||
|
=========================================================================*/
|
||
|
/**
|
||
|
* @class vtkDataArrayCollectionIterator
|
||
|
* @brief iterator through a vtkDataArrayCollection.
|
||
|
*
|
||
|
* vtkDataArrayCollectionIterator provides an implementation of
|
||
|
* vtkCollectionIterator which allows the items to be retrieved with
|
||
|
* the proper subclass pointer type for vtkDataArrayCollection.
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkDataArrayCollectionIterator_h
|
||
|
#define vtkDataArrayCollectionIterator_h
|
||
|
|
||
|
#include "vtkCollectionIterator.h"
|
||
|
#include "vtkCommonCoreModule.h" // For export macro
|
||
|
|
||
|
class vtkDataArray;
|
||
|
class vtkDataArrayCollection;
|
||
|
|
||
|
class VTKCOMMONCORE_EXPORT vtkDataArrayCollectionIterator : public vtkCollectionIterator
|
||
|
{
|
||
|
public:
|
||
|
vtkTypeMacro(vtkDataArrayCollectionIterator, vtkCollectionIterator);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
static vtkDataArrayCollectionIterator* New();
|
||
|
|
||
|
//@{
|
||
|
/**
|
||
|
* Set the collection over which to iterate.
|
||
|
*/
|
||
|
void SetCollection(vtkCollection*) override;
|
||
|
void SetCollection(vtkDataArrayCollection*);
|
||
|
//@}
|
||
|
|
||
|
/**
|
||
|
* Get the item at the current iterator position. Valid only when
|
||
|
* IsDoneWithTraversal() returns 1.
|
||
|
*/
|
||
|
vtkDataArray* GetDataArray();
|
||
|
|
||
|
protected:
|
||
|
vtkDataArrayCollectionIterator();
|
||
|
~vtkDataArrayCollectionIterator() override;
|
||
|
|
||
|
private:
|
||
|
vtkDataArrayCollectionIterator(const vtkDataArrayCollectionIterator&) = delete;
|
||
|
void operator=(const vtkDataArrayCollectionIterator&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif
|