VTK  9.0.1
vtkEdgeListIterator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkEdgeListIterator.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 2008 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19 -------------------------------------------------------------------------*/
38 #ifndef vtkEdgeListIterator_h
39 #define vtkEdgeListIterator_h
40 
41 #include "vtkCommonDataModelModule.h" // For export macro
42 #include "vtkObject.h"
43 
44 class vtkGraph;
45 class vtkGraphEdge;
46 
47 struct vtkEdgeType;
48 struct vtkOutEdgeType;
49 
50 class VTKCOMMONDATAMODEL_EXPORT vtkEdgeListIterator : public vtkObject
51 {
52 public:
55  void PrintSelf(ostream& os, vtkIndent indent) override;
56 
57  vtkGetObjectMacro(Graph, vtkGraph);
58  virtual void SetGraph(vtkGraph* graph);
59 
64 
73 
77  bool HasNext();
78 
79 protected:
82 
83  void Increment();
84 
89  bool Directed;
91 
92 private:
94  void operator=(const vtkEdgeListIterator&) = delete;
95 };
96 
97 #endif
vtkEdgeListIterator::Next
vtkEdgeType Next()
Returns the next edge in the graph.
vtkEdgeListIterator::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkIdType
int vtkIdType
Definition: vtkType.h:338
vtkEdgeListIterator::SetGraph
virtual void SetGraph(vtkGraph *graph)
vtkObject
abstract base class for most VTK objects
Definition: vtkObject.h:54
vtkEdgeListIterator::NextGraphEdge
vtkGraphEdge * NextGraphEdge()
Just like Next(), but returns heavy-weight vtkGraphEdge object instead of the vtkEdgeType struct,...
vtkEdgeListIterator::Directed
bool Directed
Definition: vtkEdgeListIterator.h:89
vtkEdgeListIterator::Vertex
vtkIdType Vertex
Definition: vtkEdgeListIterator.h:88
vtkEdgeListIterator::GraphEdge
vtkGraphEdge * GraphEdge
Definition: vtkEdgeListIterator.h:90
vtkEdgeListIterator::HasNext
bool HasNext()
Whether this iterator has more edges.
vtkEdgeType
Definition: vtkGraph.h:277
vtkEdgeListIterator::End
const vtkOutEdgeType * End
Definition: vtkEdgeListIterator.h:87
vtkGraphEdge
Representation of a single graph edge.
Definition: vtkGraphEdge.h:40
vtkEdgeListIterator::~vtkEdgeListIterator
~vtkEdgeListIterator() override
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:34
vtkEdgeListIterator
Iterates through all edges in a graph.
Definition: vtkEdgeListIterator.h:51
vtkObject.h
vtkOutEdgeType
Definition: vtkGraph.h:255
vtkEdgeListIterator::vtkEdgeListIterator
vtkEdgeListIterator()
vtkEdgeListIterator::New
static vtkEdgeListIterator * New()
vtkEdgeListIterator::Current
const vtkOutEdgeType * Current
Definition: vtkEdgeListIterator.h:86
vtkEdgeListIterator::Increment
void Increment()
vtkGraph
Base class for graph data types.
Definition: vtkGraph.h:290
vtkEdgeListIterator::Graph
vtkGraph * Graph
Definition: vtkEdgeListIterator.h:85