VTK  9.2.6
vtkVertexListIterator.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkVertexListIterator.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-------------------------------------------------------------------------*/
36
37#ifndef vtkVertexListIterator_h
38#define vtkVertexListIterator_h
39
40#include "vtkCommonDataModelModule.h" // For export macro
41#include "vtkObject.h"
42
43#include "vtkGraph.h" // For edge type definitions
44
45class vtkGraphEdge;
46
47class VTKCOMMONDATAMODEL_EXPORT vtkVertexListIterator : public vtkObject
48{
49public:
52 void PrintSelf(ostream& os, vtkIndent indent) override;
53
57 virtual void SetGraph(vtkGraph* graph);
58
60
63 vtkGetObjectMacro(Graph, vtkGraph);
65
67
71 {
72 vtkIdType v = this->Current;
73 ++this->Current;
74 return v;
75 }
76
77
81 bool HasNext() { return this->Current != this->End; }
82
83protected:
86
90
91private:
93 void operator=(const vtkVertexListIterator&) = delete;
94};
95
96#endif
Representation of a single graph edge.
Base class for graph data types.
Definition vtkGraph.h:296
a simple class to control print indentation
Definition vtkIndent.h:40
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkIdType Next()
Returns the next edge in the graph.
virtual void SetGraph(vtkGraph *graph)
Setup the iterator with a graph.
~vtkVertexListIterator() override
static vtkVertexListIterator * New()
bool HasNext()
Whether this iterator has more edges.
int vtkIdType
Definition vtkType.h:332