VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkStructuredPointsCollection.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00023 #ifndef __vtkStructuredPointsCollection_h 00024 #define __vtkStructuredPointsCollection_h 00025 00026 #include "vtkCommonDataModelModule.h" // For export macro 00027 #include "vtkCollection.h" 00028 #include "vtkStructuredPoints.h" // Needed for static cast 00029 00030 class VTKCOMMONDATAMODEL_EXPORT vtkStructuredPointsCollection : public vtkCollection 00031 { 00032 public: 00033 static vtkStructuredPointsCollection *New(); 00034 vtkTypeMacro(vtkStructuredPointsCollection,vtkCollection); 00035 void PrintSelf(ostream& os, vtkIndent indent); 00036 00038 00039 void AddItem(vtkStructuredPoints *ds) 00040 { 00041 this->vtkCollection::AddItem(ds); 00042 } 00044 00046 00048 vtkStructuredPoints *GetNextItem() { 00049 return static_cast<vtkStructuredPoints *>(this->GetNextItemAsObject());}; 00051 00052 //BTX 00054 00056 vtkStructuredPoints *GetNextStructuredPoints( 00057 vtkCollectionSimpleIterator &cookie) { 00058 return static_cast<vtkStructuredPoints *>( 00059 this->GetNextItemAsObject(cookie));}; 00060 //ETX 00062 00063 protected: 00064 vtkStructuredPointsCollection() {}; 00065 ~vtkStructuredPointsCollection() {}; 00066 00067 00068 00069 private: 00070 // hide the standard AddItem from the user and the compiler. 00071 void AddItem(vtkObject *o) { this->vtkCollection::AddItem(o); }; 00072 00073 private: 00074 vtkStructuredPointsCollection(const vtkStructuredPointsCollection&); // Not implemented. 00075 void operator=(const vtkStructuredPointsCollection&); // Not implemented. 00076 }; 00077 00078 00079 #endif