dox/IO/vtkOBJReader.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00027
#ifndef __vtkOBJReader_h
00028
#define __vtkOBJReader_h
00029
00030
#include "vtkPolyDataSource.h"
00031
00032 class VTK_IO_EXPORT vtkOBJReader :
public vtkPolyDataSource
00033 {
00034
public:
00035
static vtkOBJReader *
New();
00036 vtkTypeRevisionMacro(vtkOBJReader,
vtkPolyDataSource);
00037
void PrintSelf(ostream& os,
vtkIndent indent);
00038
00040
00041 vtkSetStringMacro(FileName);
00042 vtkGetStringMacro(FileName);
00044
00045
protected:
00046 vtkOBJReader();
00047 ~vtkOBJReader();
00048
00049
void Execute();
00050
00051 char *FileName;
00052
private:
00053 vtkOBJReader(
const vtkOBJReader&);
00054
void operator=(
const vtkOBJReader&);
00055 };
00056
00057
#endif
00058
00059