00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __itkVTKImageIO_h
00021 #define __itkVTKImageIO_h
00022
00023 #include <fstream>
00024 #include "itkImageIOBase.h"
00025
00026
00027 namespace itk
00028 {
00029
00030 class ITK_EXPORT VTKImageIO : public ImageIOBase
00031 {
00032 public:
00034 typedef VTKImageIO Self;
00035 typedef ImageIOBase Superclass;
00036 typedef SmartPointer<Self> Pointer;
00037
00039 itkNewMacro(Self);
00040
00042 itkTypeMacro(VTKImageIO, Superclass);
00043
00044
00045
00048 virtual bool CanReadFile(const char*);
00049
00051 virtual void ReadImageInformation();
00052
00054 virtual void Read(void* buffer);
00055
00056
00057
00060 virtual bool CanWriteFile(const char*);
00061
00064 virtual void WriteImageInformation() {};
00065
00068 virtual void Write(const void* buffer);
00069
00070 protected:
00071 VTKImageIO();
00072 ~VTKImageIO();
00073 void PrintSelf(std::ostream& os, Indent indent) const;
00074
00075 bool OpenVTKFileForReading(std::ifstream& os, const char* filename);
00076 bool OpenVTKFileForWriting(std::ofstream& os, const char* filename);
00077 void InternalReadImageInformation(std::ifstream& file);
00078
00079 private:
00080 VTKImageIO(const Self&);
00081 void operator=(const Self&);
00082 };
00083
00084 }
00085
00086 #endif // __itkVTKImageIO_h