VTK  9.6.1
vtkDirectedGraph.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
24
25#ifndef vtkDirectedGraph_h
26#define vtkDirectedGraph_h
27
28#include "vtkCommonDataModelModule.h" // For export macro
29#include "vtkGraph.h"
30#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
31
32VTK_ABI_NAMESPACE_BEGIN
33class VTKCOMMONDATAMODEL_EXPORT VTK_MARSHALAUTO vtkDirectedGraph : public vtkGraph
34{
35public:
37 vtkTypeMacro(vtkDirectedGraph, vtkGraph);
38 void PrintSelf(ostream& os, vtkIndent indent) override;
39
43 int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_DIRECTED_GRAPH; }
44
46
52
58 bool IsStructureValid(vtkGraph* g) override;
59
60protected:
63
64private:
65 vtkDirectedGraph(const vtkDirectedGraph&) = delete;
66 void operator=(const vtkDirectedGraph&) = delete;
67};
68
69VTK_ABI_NAMESPACE_END
70#endif
static vtkDirectedGraph * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
bool IsStructureValid(vtkGraph *g) override
Check the storage, and accept it if it is a valid undirected graph.
int GetDataObjectType() VTK_FUTURE_CONST override
Return what type of dataset this is.
static vtkDirectedGraph * GetData(vtkInformation *info)
Retrieve a graph from an information vector.
static vtkDirectedGraph * GetData(vtkInformationVector *v, int i=0)
Retrieve a graph from an information vector.
~vtkDirectedGraph() override
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
@ VTK_DIRECTED_GRAPH
Definition vtkType.h:136
#define VTK_MARSHALAUTO