ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkDOMWriter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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 itkDOMWriter_h
20#define itkDOMWriter_h
21
22#include "itkDOMNodeXMLWriter.h"
23#include "itkObject.h"
24#include "itkLogger.h"
25
26namespace itk
27{
28
66template <typename TInput>
67class ITK_TEMPLATE_EXPORT DOMWriter : public Object
68{
69public:
70 ITK_DISALLOW_COPY_AND_MOVE(DOMWriter);
71
73 using Self = DOMWriter;
74
75 itkOverrideGetNameOfClassMacro(DOMWriter);
76
77 using InputType = TInput;
78
81
84
86 itkSetStringMacro(FileName);
87
89 itkGetStringMacro(FileName);
90
92 virtual void
93 SetInput(const InputType * input);
94
96 const InputType *
97 GetInput() const;
98
103 itkGetConstMacro(Logger, LoggerType *);
104
110 void
111 Update(DOMNodeType * outputdom, const void * userdata = nullptr);
112
116 virtual void
118
119protected:
121
129 virtual void
130 GenerateData(DOMNodeType * outputdom, const void * userdata) const = 0;
131
132private:
135 itkSetObjectMacro(IntermediateDOM, DOMNodeType);
136 itkGetModifiableObjectMacro(IntermediateDOM, DOMNodeType);
139 std::string m_FileName{};
140
143
146
149
152};
153
154} // namespace itk
155
156#ifndef ITK_MANUAL_INSTANTIATION
157# include "itkDOMWriter.hxx"
158#endif
159
160#endif // itkDOMWriter_h
Class to represent a node in a Document Object Model (DOM) tree structure.
Definition itkDOMNode.h:54
SmartPointer< Self > Pointer
Definition itkDOMNode.h:61
void Update(DOMNodeType *outputdom, const void *userdata=nullptr)
DOMNodePointer m_IntermediateDOM
DOMWriter Self
LoggerPointer m_Logger
virtual void Update()
LightObject::ConstPointer m_InputHolder
virtual void GenerateData(DOMNodeType *outputdom, const void *userdata) const =0
DOMNode DOMNodeType
virtual void SetInput(const InputType *input)
typename DOMNodeType::Pointer DOMNodePointer
typename LoggerType::Pointer LoggerPointer
std::string m_FileName
const InputType * m_Input
const InputType * GetInput() const
SmartPointer< const Self > ConstPointer
Used for logging information during a run.
Definition itkLogger.h:37
SmartPointer< Self > Pointer
Definition itkLogger.h:43
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....