]> Creatis software - clitk.git/blob - common/rtkImagXXMLFileReader.h
Add clitkCommon to include ITK_OVERVIEW for older ITK versions
[clitk.git] / common / rtkImagXXMLFileReader.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 __rtkImagXXMLFileReader_h
20 #define __rtkImagXXMLFileReader_h
21
22 #ifdef _MSC_VER
23 #pragma warning ( disable : 4786 )
24 #endif
25
26 #include <itkXMLFile.h>
27 #include <itkMetaDataDictionary.h>
28
29 #include <map>
30
31 #include "clitkCommon.h"
32
33 namespace rtk
34 {
35
36 /** \class ImagXXMLFileReader
37  *
38  * TODO
39  *
40  */
41 class ImagXXMLFileReader : public itk::XMLReader<itk::MetaDataDictionary>
42 {
43 public:
44   /** Standard typedefs */
45   typedef ImagXXMLFileReader                      Self;
46   typedef itk::XMLReader<itk::MetaDataDictionary> Superclass;
47   typedef itk::SmartPointer<Self>                 Pointer;
48
49   /** Run-time type information (and related methods). */
50   itkTypeMacro(ImagXXMLFileReader, itk::XMLReader);
51
52   /** Method for creation through the object factory. */
53   itkNewMacro(Self);
54
55   /** Determine if a file can be read */
56   int CanReadFile(const char* name) ITK_OVERRIDE;
57
58 protected:
59   ImagXXMLFileReader() {m_OutputObject = &m_Dictionary;}
60   virtual ~ImagXXMLFileReader() {}
61
62   virtual void StartElement(const char * name,const char **atts) ITK_OVERRIDE;
63
64   virtual void EndElement(const char *name) ITK_OVERRIDE;
65
66   void CharacterDataHandler(const char *inData, int inLength) ITK_OVERRIDE;
67
68 private:
69   ImagXXMLFileReader(const Self&); //purposely not implemented
70   void operator=(const Self&);     //purposely not implemented
71
72   itk::MetaDataDictionary m_Dictionary;
73   std::string             m_CurCharacterData;
74 };
75
76 }
77 #endif