]> Creatis software - clitk.git/blob - common/rtkImagXImageIO.h
Merge branch 'master' into extentSimon
[clitk.git] / common / rtkImagXImageIO.h
1 /*=========================================================================
2  *
3  *  Copyright RTK Consortium
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *         http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *=========================================================================*/
18
19 #ifndef __rtkImagXImageIO_h
20 #define __rtkImagXImageIO_h
21
22 #include <itkImageIOBase.h>
23 #include <fstream>
24 #include <string.h>
25
26 namespace rtk
27 {
28
29 /** \class ImagXImageIO
30  *
31  * TODO
32  *
33  */
34 class ImagXImageIO : public itk::ImageIOBase
35 {
36 public:
37   /** Standard class typedefs. */
38   typedef ImagXImageIO            Self;
39   typedef itk::ImageIOBase        Superclass;
40   typedef itk::SmartPointer<Self> Pointer;
41
42   ImagXImageIO() : Superclass() {}
43
44   /** Method for creation through the object factory. */
45   itkNewMacro(Self);
46
47   /** Run-time type information (and related methods). */
48   itkTypeMacro(ImagXImageIO, ImageIOBase);
49
50   /*-------- This part of the interface deals with reading data. ------ */
51   virtual void ReadImageInformation();
52
53   virtual bool CanReadFile( const char* FileNameToRead );
54
55   virtual void Read(void * buffer);
56
57   /*-------- This part of the interfaces deals with writing data. ----- */
58   virtual void WriteImageInformation(bool keepOfStream);
59
60   virtual void WriteImageInformation() { WriteImageInformation(false); }
61   virtual bool CanWriteFile(const char* filename);
62
63   virtual void Write(const void* buffer);
64
65 protected:
66   std::string m_RawFileName;
67 };
68
69 } // end namespace
70
71 #endif