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

IO/vtkStructuredGridReader.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkStructuredGridReader.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 __vtkStructuredGridReader_h
00037 #define __vtkStructuredGridReader_h
00038 
00039 #include "vtkDataReader.h"
00040 
00041 class vtkStructuredGrid;
00042 
00043 class VTK_IO_EXPORT vtkStructuredGridReader : public vtkDataReader
00044 {
00045 public:
00046   static vtkStructuredGridReader *New();
00047   vtkTypeRevisionMacro(vtkStructuredGridReader,vtkDataReader);
00048   void PrintSelf(ostream& os, vtkIndent indent);
00049 
00051 
00052   vtkStructuredGrid *GetOutput();
00053   vtkStructuredGrid *GetOutput(int idx)
00054     {return (vtkStructuredGrid *) this->vtkSource::GetOutput(idx); };
00055   void SetOutput(vtkStructuredGrid *output);  
00057 
00058 protected:
00059   vtkStructuredGridReader();
00060   ~vtkStructuredGridReader();
00061 
00062   void ExecuteInformation();
00063   void Execute();
00064 
00065 private:
00066   vtkStructuredGridReader(const vtkStructuredGridReader&);  // Not implemented.
00067   void operator=(const vtkStructuredGridReader&);  // Not implemented.
00068 };
00069 
00070 #endif
00071 
00072