Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

dox/Filtering/vtkStructuredGridToPolyDataFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkStructuredGridToPolyDataFilter.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00029 #ifndef __vtkStructuredGridToPolyDataFilter_h
00030 #define __vtkStructuredGridToPolyDataFilter_h
00031 
00032 #include "vtkPolyDataSource.h"
00033 
00034 class vtkStructuredGrid;
00035 
00036 class VTK_FILTERING_EXPORT vtkStructuredGridToPolyDataFilter : public vtkPolyDataSource
00037 {
00038 public:
00039   vtkTypeRevisionMacro(vtkStructuredGridToPolyDataFilter,vtkPolyDataSource);
00040   void PrintSelf(ostream& os, vtkIndent indent);
00041 
00043 
00044   void SetInput(vtkStructuredGrid *input);
00045   vtkStructuredGrid *GetInput();
00047   
00048 protected:  
00049   vtkStructuredGridToPolyDataFilter() {this->NumberOfRequiredInputs = 1;};
00050   ~vtkStructuredGridToPolyDataFilter() {};
00051 
00052 private:
00053   vtkStructuredGridToPolyDataFilter(const vtkStructuredGridToPolyDataFilter&);  // Not implemented.
00054   void operator=(const vtkStructuredGridToPolyDataFilter&);  // Not implemented.
00055 };
00056 
00057 #endif
00058 
00059