ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkDOMReader.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 itkDOMReader_h
20#define itkDOMReader_h
21
22#include "itkDOMNodeXMLReader.h"
23#include "itkObject.h"
24#include "itkLogger.h"
25
26namespace itk
27{
28
64template <typename TOutput>
65class ITK_TEMPLATE_EXPORT DOMReader : public Object
66{
67public:
68 ITK_DISALLOW_COPY_AND_MOVE(DOMReader);
69
71 using Self = DOMReader;
72
73 itkOverrideGetNameOfClassMacro(DOMReader);
74
75 using OutputType = TOutput;
76
79
82
84 itkSetStringMacro(FileName);
85
87 itkGetStringMacro(FileName);
88
93 virtual void
95
99
101 const OutputType *
102 GetOutput() const;
103
108 itkGetConstMacro(Logger, LoggerType *);
109
115 void
116 Update(const DOMNodeType * inputdom, const void * userdata = nullptr);
117
121 virtual void
123
124protected:
126
134 virtual void
135 GenerateData(const DOMNodeType * inputdom, const void * userdata) = 0;
136
137private:
140 itkSetObjectMacro(IntermediateDOM, DOMNodeType);
141 itkGetModifiableObjectMacro(IntermediateDOM, DOMNodeType);
144 std::string m_FileName{};
145
148
151
154
157};
158
159} // namespace itk
160
161#ifndef ITK_MANUAL_INSTANTIATION
162# include "itkDOMReader.hxx"
163#endif
164
165#endif // itkDOMReader_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
TOutput OutputType
OutputType * m_Output
DOMNodePointer m_IntermediateDOM
virtual void Update()
DOMNode DOMNodeType
LoggerPointer m_Logger
virtual void GenerateData(const DOMNodeType *inputdom, const void *userdata)=0
typename DOMNodeType::Pointer DOMNodePointer
virtual void SetOutput(OutputType *output)
DOMReader Self
std::string m_FileName
void Update(const DOMNodeType *inputdom, const void *userdata=nullptr)
OutputType * GetOutput()
LightObject::Pointer m_OutputHolder
typename LoggerType::Pointer LoggerPointer
const OutputType * GetOutput() const
SmartPointer< Self > Pointer
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....