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

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 =========================================================================*/
00042 #ifndef __vtkStructuredGridToPolyDataFilter_h
00043 #define __vtkStructuredGridToPolyDataFilter_h
00044 
00045 #include "vtkPolyDataSource.h"
00046 
00047 class vtkStructuredGrid;
00048 
00049 class VTK_FILTERING_EXPORT vtkStructuredGridToPolyDataFilter : public vtkPolyDataSource
00050 {
00051 public:
00052   vtkTypeRevisionMacro(vtkStructuredGridToPolyDataFilter,vtkPolyDataSource);
00053   void PrintSelf(ostream& os, vtkIndent indent);
00054 
00056 
00057   void SetInput(vtkStructuredGrid *input);
00058   vtkStructuredGrid *GetInput();
00060   
00061 protected:  
00062   vtkStructuredGridToPolyDataFilter() {this->NumberOfRequiredInputs = 1;};
00063   ~vtkStructuredGridToPolyDataFilter() {};
00064 
00065 private:
00066   vtkStructuredGridToPolyDataFilter(const vtkStructuredGridToPolyDataFilter&);  // Not implemented.
00067   void operator=(const vtkStructuredGridToPolyDataFilter&);  // Not implemented.
00068 };
00069 
00070 #endif
00071 
00072