VTK  9.3.20240328
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
39 #ifndef vtkXGMLReader_h
40 #define vtkXGMLReader_h
41 
42 #include "vtkIOInfovisModule.h" // For export macro
44 
45 VTK_ABI_NAMESPACE_BEGIN
46 class VTKIOINFOVIS_EXPORT vtkXGMLReader : public vtkUndirectedGraphAlgorithm
47 {
48 public:
49  static vtkXGMLReader* New();
51  void PrintSelf(ostream& os, vtkIndent indent) override;
52 
54 
60 
61 protected:
63  ~vtkXGMLReader() override;
64 
66 
67 private:
68  char* FileName;
69 
70  vtkXGMLReader(const vtkXGMLReader&) = delete;
71  void operator=(const vtkXGMLReader&) = delete;
72 };
73 
74 VTK_ABI_NAMESPACE_END
75 #endif // vtkXGMLReader_h
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 undirected graph as output.
Reads XGML graph files.
Definition: vtkXGMLReader.h:47
~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.