VTK  9.3.0
vtkXGMLReader.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
29 #ifndef vtkXGMLReader_h
30 #define vtkXGMLReader_h
31 
32 #include "vtkIOInfovisModule.h" // For export macro
34 
35 VTK_ABI_NAMESPACE_BEGIN
36 class VTKIOINFOVIS_EXPORT vtkXGMLReader : public vtkUndirectedGraphAlgorithm
37 {
38 public:
39  static vtkXGMLReader* New();
41  void PrintSelf(ostream& os, vtkIndent indent) override;
42 
44 
50 
51 protected:
53  ~vtkXGMLReader() override;
54 
56 
57 private:
58  char* FileName;
59 
60  vtkXGMLReader(const vtkXGMLReader&) = delete;
61  void operator=(const vtkXGMLReader&) = delete;
62 };
63 
64 VTK_ABI_NAMESPACE_END
65 #endif // vtkXGMLReader_h
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce undirected graph as output.
Reads XGML graph files.
Definition: vtkXGMLReader.h:37
~vtkXGMLReader() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkSetFilePathMacro(FileName)
The XGML file name.
static vtkXGMLReader * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkGetFilePathMacro(FileName)
The XGML file name.