VTK  9.3.0
vtkISIReader.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation
3// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
23#ifndef vtkISIReader_h
24#define vtkISIReader_h
25
26#include "vtkIOInfovisModule.h" // For export macro
27#include "vtkTableAlgorithm.h"
28
29VTK_ABI_NAMESPACE_BEGIN
30class vtkTable;
31
32class VTKIOINFOVIS_EXPORT vtkISIReader : public vtkTableAlgorithm
33{
34public:
35 static vtkISIReader* New();
37 void PrintSelf(ostream& os, vtkIndent indent) override;
38
40
46
48
51 vtkGetStringMacro(Delimiter);
52 vtkSetStringMacro(Delimiter);
54
56
59 vtkGetMacro(MaxRecords, int);
60 vtkSetMacro(MaxRecords, int);
62
63protected:
65 ~vtkISIReader() override;
66
68
69 char* FileName;
70 char* Delimiter;
72
73private:
74 vtkISIReader(const vtkISIReader&) = delete;
75 void operator=(const vtkISIReader&) = delete;
76};
77
78VTK_ABI_NAMESPACE_END
79#endif
reader for ISI files
char * FileName
~vtkISIReader() override
vtkSetFilePathMacro(FileName)
Set/get the file to load.
char * Delimiter
vtkGetFilePathMacro(FileName)
Set/get the file to load.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkISIReader * New()
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkTables as output.
A table, which contains similar-typed columns of data.
Definition vtkTable.h:59