VTK  9.2.5
vtkInEdgeIterator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkInEdgeIterator.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 -------------------------------------------------------------------------*/
57 #ifndef vtkInEdgeIterator_h
58 #define vtkInEdgeIterator_h
59 
60 #include "vtkCommonDataModelModule.h" // For export macro
61 #include "vtkObject.h"
62 
63 #include "vtkGraph.h" // For edge type definitions
64 
65 class vtkGraphEdge;
66 
67 class VTKCOMMONDATAMODEL_EXPORT vtkInEdgeIterator : public vtkObject
68 {
69 public:
71  vtkTypeMacro(vtkInEdgeIterator, vtkObject);
72  void PrintSelf(ostream& os, vtkIndent indent) override;
73 
78 
80 
83  vtkGetObjectMacro(Graph, vtkGraph);
84  vtkGetMacro(Vertex, vtkIdType);
86 
88 
92  {
93  vtkInEdgeType e = *this->Current;
94  ++this->Current;
95  return e;
96  }
98 
107 
111  bool HasNext() { return this->Current != this->End; }
112 
113 protected:
115  ~vtkInEdgeIterator() override;
116 
121  virtual void SetGraph(vtkGraph* graph);
122 
128 
129 private:
130  vtkInEdgeIterator(const vtkInEdgeIterator&) = delete;
131  void operator=(const vtkInEdgeIterator&) = delete;
132 };
133 
134 #endif
Representation of a single graph edge.
Definition: vtkGraphEdge.h:40
Base class for graph data types.
Definition: vtkGraph.h:345
Iterates through all incoming edges to a vertex.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void SetGraph(vtkGraph *graph)
Protected method for setting the graph used by Initialize().
static vtkInEdgeIterator * New()
vtkInEdgeType Next()
Returns the next edge in the graph.
void Initialize(vtkGraph *g, vtkIdType v)
Initialize the iterator with a graph and vertex.
bool HasNext()
Whether this iterator has more edges.
const vtkInEdgeType * End
vtkGraphEdge * NextGraphEdge()
Just like Next(), but returns heavy-weight vtkGraphEdge object instead of the vtkEdgeType struct,...
vtkGraphEdge * GraphEdge
~vtkInEdgeIterator() override
const vtkInEdgeType * Current
a simple class to control print indentation
Definition: vtkIndent.h:119
abstract base class for most VTK objects
Definition: vtkObject.h:82
int vtkIdType
Definition: vtkType.h:332