1 /*=========================================================================
3 * Copyright RTK Consortium
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
9 * http://www.apache.org/licenses/LICENSE-2.0.txt
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.
17 *=========================================================================*/
19 #ifndef __rtkImagXImageIO_h
20 #define __rtkImagXImageIO_h
22 #include <itkImageIOBase.h>
29 /** \class ImagXImageIO
34 class ImagXImageIO : public itk::ImageIOBase
37 /** Standard class typedefs. */
38 typedef ImagXImageIO Self;
39 typedef itk::ImageIOBase Superclass;
40 typedef itk::SmartPointer<Self> Pointer;
42 ImagXImageIO() : Superclass() {}
44 /** Method for creation through the object factory. */
47 /** Run-time type information (and related methods). */
48 itkTypeMacro(ImagXImageIO, ImageIOBase);
50 /*-------- This part of the interface deals with reading data. ------ */
51 virtual void ReadImageInformation();
53 virtual bool CanReadFile( const char* FileNameToRead );
55 virtual void Read(void * buffer);
57 /*-------- This part of the interfaces deals with writing data. ----- */
58 virtual void WriteImageInformation(bool keepOfStream);
60 virtual void WriteImageInformation() { WriteImageInformation(false); }
61 virtual bool CanWriteFile(const char* filename);
63 virtual void Write(const void* buffer);
66 std::string m_RawFileName;