VTK  9.3.20240419
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
26 #ifndef vtkISIReader_h
27 #define vtkISIReader_h
28 
29 #include "vtkIOInfovisModule.h" // For export macro
30 #include "vtkTableAlgorithm.h"
31 
32 VTK_ABI_NAMESPACE_BEGIN
33 class vtkTable;
34 
35 class VTKIOINFOVIS_EXPORT vtkISIReader : public vtkTableAlgorithm
36 {
37 public:
38  static vtkISIReader* New();
40  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
43 
49 
51 
54  vtkGetStringMacro(Delimiter);
55  vtkSetStringMacro(Delimiter);
57 
59 
62  vtkGetMacro(MaxRecords, int);
63  vtkSetMacro(MaxRecords, int);
65 
66 protected:
68  ~vtkISIReader() override;
69 
71 
72  char* FileName;
73  char* Delimiter;
75 
76 private:
77  vtkISIReader(const vtkISIReader&) = delete;
78  void operator=(const vtkISIReader&) = delete;
79 };
80 
81 VTK_ABI_NAMESPACE_END
82 #endif
reader for ISI files
Definition: vtkISIReader.h:36
char * FileName
Definition: vtkISIReader.h:72
~vtkISIReader() override
vtkSetFilePathMacro(FileName)
Set/get the file to load.
char * Delimiter
Definition: vtkISIReader.h:73
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:108
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:168