VTK  9.2.6
vtkPolyDataCollection.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPolyDataCollection.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 =========================================================================*/
55 #ifndef vtkPolyDataCollection_h
56 #define vtkPolyDataCollection_h
57 
58 #include "vtkCollection.h"
59 #include "vtkCommonDataModelModule.h" // For export macro
60 
61 #include "vtkPolyData.h" // Needed for static cast
62 
63 class VTKCOMMONDATAMODEL_EXPORT vtkPolyDataCollection : public vtkCollection
64 {
65 public:
68  void PrintSelf(ostream& os, vtkIndent indent) override;
69 
73  void AddItem(vtkPolyData* pd) { this->vtkCollection::AddItem(pd); }
74 
78  vtkPolyData* GetNextItem() { return static_cast<vtkPolyData*>(this->GetNextItemAsObject()); }
79 
85  {
86  return static_cast<vtkPolyData*>(this->GetNextItemAsObject(cookie));
87  }
88 
89 protected:
90  vtkPolyDataCollection() = default;
91  ~vtkPolyDataCollection() override = default;
92 
93 private:
94  // hide the standard AddItem from the user and the compiler.
95  void AddItem(vtkObject* o) { this->vtkCollection::AddItem(o); }
96 
97 private:
99  void operator=(const vtkPolyDataCollection&) = delete;
100 };
101 
102 #endif
create and manipulate ordered lists of objects
Definition: vtkCollection.h:56
void AddItem(vtkObject *)
Add an object to the bottom of the list.
vtkObject * GetNextItemAsObject()
Get the next item in the collection.
a simple class to control print indentation
Definition: vtkIndent.h:119
abstract base class for most VTK objects
Definition: vtkObject.h:82
maintain a list of polygonal data objects
vtkPolyData * GetNextPolyData(vtkCollectionSimpleIterator &cookie)
Reentrant safe way to get an object in a collection.
void AddItem(vtkPolyData *pd)
Add a poly data to the bottom of the list.
vtkPolyDataCollection()=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkPolyData * GetNextItem()
Get the next poly data in the list.
static vtkPolyDataCollection * New()
~vtkPolyDataCollection() override=default
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:200
void * vtkCollectionSimpleIterator
Definition: vtkCollection.h:51