00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkBridgeCellIteratorStrategy.h,v $ 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 =========================================================================*/ 00030 #ifndef __vtkBridgeCellIteratorStrategy_h 00031 #define __vtkBridgeCellIteratorStrategy_h 00032 00033 #include "vtkBridgeExport.h" 00034 #include "vtkGenericCellIterator.h" 00035 00036 class vtkBridgeCell; 00037 class vtkBridgeDataSet; 00038 class vtkBridgeCell; 00039 class vtkIdList; 00040 00041 class VTK_BRIDGE_EXPORT vtkBridgeCellIteratorStrategy : public vtkGenericCellIterator 00042 { 00043 public: 00044 vtkTypeRevisionMacro(vtkBridgeCellIteratorStrategy,vtkGenericCellIterator); 00045 void PrintSelf(ostream& os, vtkIndent indent); 00046 00048 vtkGenericAdaptorCell *NewCell(); 00049 00050 protected: 00051 vtkBridgeCellIteratorStrategy() {} 00052 virtual ~vtkBridgeCellIteratorStrategy() {} 00053 00054 private: 00055 vtkBridgeCellIteratorStrategy(const vtkBridgeCellIteratorStrategy&); // Not implemented 00056 void operator=(const vtkBridgeCellIteratorStrategy&); // Not implemented 00057 }; 00058 00059 #endif