IO/vtkOBJReader.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00043 #ifndef __vtkOBJReader_h
00044 #define __vtkOBJReader_h
00045
00046 #include "vtkPolyDataSource.h"
00047
00048 class VTK_IO_EXPORT vtkOBJReader : public vtkPolyDataSource
00049 {
00050 public:
00051 static vtkOBJReader *New();
00052 vtkTypeRevisionMacro(vtkOBJReader,vtkPolyDataSource);
00053 void PrintSelf(ostream& os, vtkIndent indent);
00054
00056
00057 vtkSetStringMacro(FileName);
00058 vtkGetStringMacro(FileName);
00060
00061 protected:
00062 vtkOBJReader();
00063 ~vtkOBJReader();
00064
00065 void Execute();
00066
00067 char *FileName;
00068 private:
00069 vtkOBJReader(const vtkOBJReader&);
00070 void operator=(const vtkOBJReader&);
00071 };
00072
00073 #endif
00074
00075