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

vtkPLYReader.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkPLYReader.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 =========================================================================*/
00047 #ifndef __vtkPLYReader_h
00048 #define __vtkPLYReader_h
00049 
00050 #include "vtkPolyDataSource.h"
00051 
00052 class VTK_IO_EXPORT vtkPLYReader : public vtkPolyDataSource 
00053 {
00054 public:
00055   vtkTypeRevisionMacro(vtkPLYReader,vtkPolyDataSource);
00056   void PrintSelf(ostream& os, vtkIndent indent);
00057 
00059   static vtkPLYReader *New();
00060 
00062 
00063   vtkSetStringMacro(FileName);
00064   vtkGetStringMacro(FileName);
00066 
00067 protected:
00068   vtkPLYReader();
00069   ~vtkPLYReader();
00070 
00071   char *FileName;
00072 
00073   void Execute();
00074 private:
00075   vtkPLYReader(const vtkPLYReader&);  // Not implemented.
00076   void operator=(const vtkPLYReader&);  // Not implemented.
00077 };
00078 
00079 #endif
00080 
00081