VTK  9.2.6
vtkTecplotTableReader.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTecplotTableReader.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
15/*-------------------------------------------------------------------------
16 Copyright 2016 Menno Deij - van Rijswijk (MARIN)
17-------------------------------------------------------------------------*/
18
32
33#ifndef vtkTecplotTableReader_h
34#define vtkTecplotTableReader_h
35
36#include "vtkIOTecplotTableModule.h" // For export macro
37#include "vtkStdString.h" // Needed for vtkStdString
38#include "vtkTableAlgorithm.h"
39
40class VTKIOTECPLOTTABLE_EXPORT vtkTecplotTableReader : public vtkTableAlgorithm
41{
42public:
45 void PrintSelf(ostream& os, vtkIndent indent) override;
46
48
54
56
60 vtkGetMacro(MaxRecords, vtkIdType);
61 vtkSetMacro(MaxRecords, vtkIdType);
63
65
68 vtkGetMacro(HeaderLines, vtkIdType);
69 vtkSetMacro(HeaderLines, vtkIdType);
71
73
79
81
87
89
93 vtkSetStringMacro(PedigreeIdArrayName);
94 vtkGetStringMacro(PedigreeIdArrayName);
96
98
102 vtkSetMacro(GeneratePedigreeIds, bool);
103 vtkGetMacro(GeneratePedigreeIds, bool);
104 vtkBooleanMacro(GeneratePedigreeIds, bool);
106
108
111 vtkSetMacro(OutputPedigreeIds, bool);
112 vtkGetMacro(OutputPedigreeIds, bool);
113 vtkBooleanMacro(OutputPedigreeIds, bool);
115
122
123protected:
126
128
129 char* FileName;
138
139private:
141 void operator=(const vtkTecplotTableReader&) = delete;
142};
143
144#endif
a simple class to control print indentation
Definition vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Wrapper around std::string to keep symbols short.
vtkStdString GetLastError()
Returns a human-readable description of the most recent error, if any.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkGetFilePathMacro(FileName)
Specifies the delimited text file to be loaded.
vtkSetFilePathMacro(FileName)
Specifies the delimited text file to be loaded.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkTecplotTableReader * New()
~vtkTecplotTableReader() override
int vtkIdType
Definition vtkType.h:332