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 __rtkImagXXMLFileReader_h
20 #define __rtkImagXXMLFileReader_h
23 #pragma warning ( disable : 4786 )
26 #include <itkXMLFile.h>
27 #include <itkMetaDataDictionary.h>
31 #include "clitkCommon.h"
36 /** \class ImagXXMLFileReader
41 class ImagXXMLFileReader : public itk::XMLReader<itk::MetaDataDictionary>
44 /** Standard typedefs */
45 typedef ImagXXMLFileReader Self;
46 typedef itk::XMLReader<itk::MetaDataDictionary> Superclass;
47 typedef itk::SmartPointer<Self> Pointer;
49 /** Run-time type information (and related methods). */
50 itkTypeMacro(ImagXXMLFileReader, itk::XMLReader);
52 /** Method for creation through the object factory. */
55 /** Determine if a file can be read */
56 int CanReadFile(const char* name) ITK_OVERRIDE;
59 ImagXXMLFileReader() {m_OutputObject = &m_Dictionary;}
60 virtual ~ImagXXMLFileReader() {}
62 virtual void StartElement(const char * name,const char **atts) ITK_OVERRIDE;
64 virtual void EndElement(const char *name) ITK_OVERRIDE;
66 void CharacterDataHandler(const char *inData, int inLength) ITK_OVERRIDE;
69 ImagXXMLFileReader(const Self&); //purposely not implemented
70 void operator=(const Self&); //purposely not implemented
72 itk::MetaDataDictionary m_Dictionary;
73 std::string m_CurCharacterData;