VTK  9.2.6
vtkAdjacentVertexIterator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAdjacentVertexIterator.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 -------------------------------------------------------------------------*/
56 #ifndef vtkAdjacentVertexIterator_h
57 #define vtkAdjacentVertexIterator_h
58 
59 #include "vtkCommonDataModelModule.h" // For export macro
60 #include "vtkObject.h"
61 
62 #include "vtkGraph.h" // For edge type definitions
63 
64 class vtkGraphEdge;
65 
66 class VTKCOMMONDATAMODEL_EXPORT vtkAdjacentVertexIterator : public vtkObject
67 {
68 public:
71  void PrintSelf(ostream& os, vtkIndent indent) override;
72 
77 
79 
82  vtkGetObjectMacro(Graph, vtkGraph);
83  vtkGetMacro(Vertex, vtkIdType);
85 
87 
91  {
92  vtkOutEdgeType e = *this->Current;
93  ++this->Current;
94  return e.Target;
95  }
97 
101  bool HasNext() { return this->Current != this->End; }
102 
103 protected:
106 
111  virtual void SetGraph(vtkGraph* graph);
112 
117 
118 private:
120  void operator=(const vtkAdjacentVertexIterator&) = delete;
121 };
122 
123 #endif
Iterates through adjacent vertices in a graph.
~vtkAdjacentVertexIterator() override
vtkIdType Next()
Returns the next edge in the graph.
bool HasNext()
Whether this iterator has more edges.
virtual void SetGraph(vtkGraph *graph)
Protected method for setting the graph used by Initialize().
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void Initialize(vtkGraph *g, vtkIdType v)
Initialize the iterator with a graph and vertex.
static vtkAdjacentVertexIterator * New()
Representation of a single graph edge.
Definition: vtkGraphEdge.h:40
Base class for graph data types.
Definition: vtkGraph.h:345
a simple class to control print indentation
Definition: vtkIndent.h:119
abstract base class for most VTK objects
Definition: vtkObject.h:82
vtkIdType Target
Definition: vtkGraph.h:317
int vtkIdType
Definition: vtkType.h:332