VTK
dox/Testing/GenericBridge/vtkBridgeCellIteratorStrategy.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkBridgeCellIteratorStrategy.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 =========================================================================*/
00030 #ifndef __vtkBridgeCellIteratorStrategy_h
00031 #define __vtkBridgeCellIteratorStrategy_h
00032 
00033 #include "vtkBridgeExport.h" //for module export macro
00034 #include "vtkGenericCellIterator.h"
00035 
00036 class vtkBridgeCell;
00037 class vtkBridgeDataSet;
00038 class vtkBridgeCell;
00039 class vtkIdList;
00040 
00041 class VTKTESTINGGENERICBRIDGE_EXPORT vtkBridgeCellIteratorStrategy : public vtkGenericCellIterator
00042 {
00043 public:
00044   vtkTypeMacro(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