ITK  4.4.0
Insight Segmentation and Registration Toolkit
itkDOMNodeXMLWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software 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 __itkDOMNodeXMLWriter_h
20 #define __itkDOMNodeXMLWriter_h
21 
22 #include "itkDOMNode.h"
23 #include "itkObject.h"
24 
25 #include <ostream>
26 
27 namespace itk
28 {
29 
60 class DOMNodeXMLWriter : public Object
61 {
62 public:
63 
66  typedef Object Superclass;
69 
71  itkNewMacro(Self);
72 
74  itkTypeMacro(DOMNodeXMLWriter, Object);
75 
76  typedef DOMNode InputType;
78 
80  itkSetStringMacro(FileName);
81 
83  itkGetStringMacro(FileName);
84 
86  itkSetConstObjectMacro( Input, InputType );
87  itkGetConstObjectMacro(Input, InputType );
89 
94  void Update( std::ostream& os, std::string indent = "" );
95 
99  virtual void Update();
100 
101 protected:
103 
104 private:
105  DOMNodeXMLWriter(const Self &); //purposely not implemented
106  void operator=(const Self &); //purposely not implemented
107 
109  std::string m_FileName;
110 
113 
115  std::string m_IndentStep;
116 };
117 
118 } // namespace itk
119 
121 inline std::ostream& operator<<( std::ostream& os, const itk::DOMNode& object )
122 {
124  writer->SetInput( &object );
125  writer->Update( os );
126  return os;
127 }
129 
130 #endif // __itkDOMNodeXMLWriter_h
131