ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkCSVArray2DFileReader.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 itkCSVArray2DFileReader_h
20#define itkCSVArray2DFileReader_h
21
24
25namespace itk
26{
27
78template <typename TData>
79class ITK_TEMPLATE_EXPORT CSVArray2DFileReader : public CSVFileReaderBase
80{
81public:
82 ITK_DISALLOW_COPY_AND_MOVE(CSVArray2DFileReader);
83
89
91 itkNewMacro(Self);
92
94 itkOverrideGetNameOfClassMacro(CSVArray2DFileReader);
95
98 using Array2DDataObjectPointer = typename Array2DDataObjectType::Pointer;
99
101 using ValueType = TData;
102
105 itkGetModifiableObjectMacro(Array2DDataObject, Array2DDataObjectType);
106
111 void
112 Parse() override;
113
116 virtual void
118
123
124protected:
126 ~CSVArray2DFileReader() override = default;
127
129 void
130 PrintSelf(std::ostream & os, Indent indent) const override;
131
132private:
134};
135
136} // end namespace itk
137
138#ifndef ITK_MANUAL_INSTANTIATION
139# include "itkCSVArray2DFileReader.hxx"
140#endif
141
142#endif
Stores parsed data from csv files.
typename itk::CSVArray2DDataObject< TData > Array2DDataObjectType
~CSVArray2DFileReader() override=default
virtual Array2DDataObjectPointer GetOutput()
void PrintSelf(std::ostream &os, Indent indent) const override
Array2DDataObjectPointer m_Array2DDataObject
typename Array2DDataObjectType::Pointer Array2DDataObjectPointer
SmartPointer< const Self > ConstPointer
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....