VTK  9.3.20240425
vtkTulipReader.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
52#ifndef vtkTulipReader_h
53#define vtkTulipReader_h
54
55#include "vtkIOInfovisModule.h" // For export macro
57
58VTK_ABI_NAMESPACE_BEGIN
59class VTKIOINFOVIS_EXPORT vtkTulipReader : public vtkUndirectedGraphAlgorithm
60{
61public:
64 void PrintSelf(ostream& os, vtkIndent indent) override;
65
67
73
74protected:
76 ~vtkTulipReader() override;
77
79
83 int FillOutputPortInformation(int port, vtkInformation* info) override;
84
85private:
86 char* FileName;
87
88 vtkTulipReader(const vtkTulipReader&) = delete;
89 void operator=(const vtkTulipReader&) = delete;
90};
91
92VTK_ABI_NAMESPACE_END
93#endif // vtkTulipReader_h
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Reads tulip graph files.
vtkSetFilePathMacro(FileName)
The Tulip file name.
vtkGetFilePathMacro(FileName)
The Tulip file name.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
~vtkTulipReader() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillOutputPortInformation(int port, vtkInformation *info) override
Set the outputs to vtkUndirectedGraph and vtkAnnotationLayers.
static vtkTulipReader * New()
Superclass for algorithms that produce undirected graph as output.