VTK
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 -------------------------------------------------------------------------*/
44 #ifndef vtkEdgeListIterator_h
45 #define vtkEdgeListIterator_h
46 
47 #include "vtkCommonDataModelModule.h" // For export macro
48 #include "vtkObject.h"
49 
50 class vtkGraph;
51 class vtkGraphEdge;
52 
53 struct vtkEdgeType;
54 struct vtkOutEdgeType;
55 
56 class VTKCOMMONDATAMODEL_EXPORT vtkEdgeListIterator : public vtkObject
57 {
58 public:
59  static vtkEdgeListIterator *New();
61  void PrintSelf(ostream& os, vtkIndent indent) override;
62 
63  vtkGetObjectMacro(Graph, vtkGraph);
64  virtual void SetGraph(vtkGraph *graph);
65 
69  vtkEdgeType Next();
70 
78  vtkGraphEdge *NextGraphEdge();
79 
83  bool HasNext();
84 
85 protected:
87  ~vtkEdgeListIterator() override;
88 
89  void Increment();
90 
95  bool Directed;
97 
98 private:
100  void operator=(const vtkEdgeListIterator&) = delete;
101 };
102 
103 #endif
vtkIdType
int vtkIdType
Definition: vtkType.h:347
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkObject
abstract base class for most VTK objects
Definition: vtkObject.h:59
vtkEdgeListIterator::Directed
bool Directed
Definition: vtkEdgeListIterator.h:95
vtkEdgeListIterator::Vertex
vtkIdType Vertex
Definition: vtkEdgeListIterator.h:94
vtkEdgeListIterator::GraphEdge
vtkGraphEdge * GraphEdge
Definition: vtkEdgeListIterator.h:96
vtkEdgeType
Definition: vtkGraph.h:276
vtkEdgeListIterator::End
const vtkOutEdgeType * End
Definition: vtkEdgeListIterator.h:93
vtkGraphEdge
Representation of a single graph edge.
Definition: vtkGraphEdge.h:39
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkEdgeListIterator
Iterates through all edges in a graph.
Definition: vtkEdgeListIterator.h:56
vtkObject::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkObject.h
vtkOutEdgeType
Definition: vtkGraph.h:258
vtkEdgeListIterator::Current
const vtkOutEdgeType * Current
Definition: vtkEdgeListIterator.h:92
vtkGraph
Base class for graph data types.
Definition: vtkGraph.h:287
vtkEdgeListIterator::Graph
vtkGraph * Graph
Definition: vtkEdgeListIterator.h:91