Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef VtkSurfaceReader_H_HEADER_INCLUDED
00018 #define VtkSurfaceReader_H_HEADER_INCLUDED
00019
00020 #include "mitkCommon.h"
00021 #include "mitkSurfaceSource.h"
00022
00023 namespace mitk {
00024
00025
00026
00027 class MITK_CORE_EXPORT VtkSurfaceReader : public SurfaceSource
00028 {
00029 public:
00030 mitkClassMacro(VtkSurfaceReader, SurfaceSource);
00031
00033 itkNewMacro(Self);
00034
00035 itkSetStringMacro(FileName);
00036 itkGetStringMacro(FileName);
00037
00038 itkSetStringMacro(FilePrefix);
00039 itkGetStringMacro(FilePrefix);
00040
00041 itkSetStringMacro(FilePattern);
00042 itkGetStringMacro(FilePattern);
00043
00044 static bool CanReadFile(const std::string filename, const std::string filePrefix, const std::string filePattern);
00045
00046 protected:
00047 virtual void GenerateData();
00048
00049 VtkSurfaceReader();
00050
00051 ~VtkSurfaceReader();
00052
00053 std::string m_FileName, m_FilePrefix, m_FilePattern;
00054
00055 };
00056
00057 }
00058
00059 #endif