ITK  4.13.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 
67  typedef Object Superclass;
70 
72  itkNewMacro(Self);
73 
75  itkTypeMacro(DOMNodeXMLWriter, Object);
76 
77  typedef DOMNode InputType;
79 
81  itkSetStringMacro(FileName);
82 
84  itkGetStringMacro(FileName);
85 
87  itkSetConstObjectMacro( Input, InputType );
88  itkGetConstObjectMacro(Input, InputType );
90 
95  void Update( std::ostream& os, std::string indent = "" );
96 
100  virtual void Update();
101 
102 protected:
104 
105 private:
106  ITK_DISALLOW_COPY_AND_ASSIGN(DOMNodeXMLWriter);
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
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()
InputType::ConstPointer ConstInputPointer
SmartPointer< const Self > ConstPointer
std::ostream & operator<<(std::ostream &os, VariableLengthVectorExpression< TExpr1, TExpr2, TBinaryOp > const &v)
SmartPointer< Self > Pointer
Base class for most ITK classes.
Definition: itkObject.h:59