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

vtkDataSetToStructuredGridFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkDataSetToStructuredGridFilter.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 =========================================================================*/
00036 #ifndef __vtkDataSetToStructuredGridFilter_h
00037 #define __vtkDataSetToStructuredGridFilter_h
00038 
00039 #include "vtkStructuredGridSource.h"
00040 
00041 class vtkDataSet;
00042 
00043 class VTK_FILTERING_EXPORT vtkDataSetToStructuredGridFilter : public vtkStructuredGridSource
00044 {
00045 public:
00046   vtkTypeRevisionMacro(vtkDataSetToStructuredGridFilter,vtkStructuredGridSource);
00047   void PrintSelf(ostream& os, vtkIndent indent);
00048 
00050 
00051   virtual void SetInput(vtkDataSet *input);
00052   vtkDataSet *GetInput();
00054 
00055 protected:
00056   vtkDataSetToStructuredGridFilter();
00057   ~vtkDataSetToStructuredGridFilter();
00058 
00059   virtual int FillInputPortInformation(int, vtkInformation*);
00060 
00061 private:
00062   vtkDataSetToStructuredGridFilter(const vtkDataSetToStructuredGridFilter&);  // Not implemented.
00063   void operator=(const vtkDataSetToStructuredGridFilter&);  // Not implemented.
00064 };
00065 
00066 #endif
00067 
00068