ITK  5.0.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 #include "ITKIOXMLExport.h"
25 
26 #include <ostream>
27 
28 namespace itk
29 {
30 
61 class ITKIOXML_EXPORT DOMNodeXMLWriter : public Object
62 {
63 public:
64  ITK_DISALLOW_COPY_AND_ASSIGN(DOMNodeXMLWriter);
66 
69  using Superclass = Object;
72 
74  itkNewMacro(Self);
75 
77  itkTypeMacro(DOMNodeXMLWriter, Object);
78 
79  using InputType = DOMNode;
81 
83  itkSetStringMacro(FileName);
84 
86  itkGetStringMacro(FileName);
87 
89  itkSetConstObjectMacro( Input, InputType );
90  itkGetConstObjectMacro(Input, InputType );
92 
97  void Update( std::ostream& os, std::string indent = "" );
98 
102  virtual void Update();
103 
104 protected:
106 
107 private:
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
Light weight base class for most itk classes.
ConstInputPointer m_Input
Class to represent a node in a Document Object Model (DOM) tree structure.
Definition: itkDOMNode.h:53
Class to write a DOM object to an XML file or an output stream.
static Pointer New()
std::ostream & operator<<(std::ostream &os, VariableLengthVectorExpression< TExpr1, TExpr2, TBinaryOp > const &v)
Base class for most ITK classes.
Definition: itkObject.h:60