Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __itkBioRadImageIO_h
00021 #define __itkBioRadImageIO_h
00022
00023 #include "itkImageIOBase.h"
00024 #include <fstream>
00025
00026 namespace itk
00027 {
00028
00041 class ITK_EXPORT BioRadImageIO : public ImageIOBase
00042 {
00043 public:
00045 typedef BioRadImageIO Self;
00046 typedef ImageIOBase Superclass;
00047 typedef SmartPointer<Self> Pointer;
00048
00050 itkNewMacro(Self);
00051
00053 itkTypeMacro(BioRadImageIO, Superclass);
00054
00055
00056
00059 virtual bool CanReadFile(const char*);
00060
00062 virtual void ReadImageInformation();
00063
00065 virtual void Read(void* buffer);
00066
00067
00068
00071 virtual bool CanWriteFile(const char*);
00072
00075 virtual void WriteImageInformation() {};
00076
00079 virtual void Write(const void* buffer);
00080
00081 protected:
00082 BioRadImageIO();
00083 ~BioRadImageIO();
00084 void PrintSelf(std::ostream& os, Indent indent) const;
00085
00086 bool OpenBioRadFileForReading(std::ifstream& os, const char* filename);
00087 bool OpenBioRadFileForWriting(std::ofstream& os, const char* filename);
00088 void InternalReadImageInformation(std::ifstream& file);
00089
00090 private:
00091 BioRadImageIO(const Self&);
00092 void operator=(const Self&);
00093 };
00094
00095 }
00096
00097 #endif // __itkBioRadImageIO_h
00098