VTK
9.0.1
Common
DataModel
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
-------------------------------------------------------------------------*/
34
#ifndef vtkVertexListIterator_h
35
#define vtkVertexListIterator_h
36
37
#include "vtkCommonDataModelModule.h"
// For export macro
38
#include "
vtkObject.h
"
39
40
#include "
vtkGraph.h
"
// For edge type definitions
41
42
class
vtkGraphEdge
;
43
44
class
VTKCOMMONDATAMODEL_EXPORT
vtkVertexListIterator
:
public
vtkObject
45
{
46
public
:
47
static
vtkVertexListIterator
*
New
();
48
vtkTypeMacro(
vtkVertexListIterator
,
vtkObject
);
49
void
PrintSelf
(ostream& os,
vtkIndent
indent)
override
;
50
54
virtual
void
SetGraph(
vtkGraph
* graph);
55
57
60
vtkGetObjectMacro(Graph,
vtkGraph
);
62
64
67
vtkIdType
Next
()
68
{
69
vtkIdType
v = this->Current;
70
++this->Current;
71
return
v;
72
}
74
78
bool
HasNext
() {
return
this->Current != this->End; }
79
80
protected
:
81
vtkVertexListIterator
();
82
~
vtkVertexListIterator
()
override
;
83
84
vtkGraph
*
Graph
;
85
vtkIdType
Current
;
86
vtkIdType
End
;
87
88
private
:
89
vtkVertexListIterator
(
const
vtkVertexListIterator
&) =
delete
;
90
void
operator=(
const
vtkVertexListIterator
&) =
delete
;
91
};
92
93
#endif
vtkVertexListIterator::Graph
vtkGraph * Graph
Definition:
vtkVertexListIterator.h:84
vtkVertexListIterator::Current
vtkIdType Current
Definition:
vtkVertexListIterator.h:85
vtkIdType
int vtkIdType
Definition:
vtkType.h:338
vtkVertexListIterator::HasNext
bool HasNext()
Whether this iterator has more edges.
Definition:
vtkVertexListIterator.h:78
vtkVertexListIterator::Next
vtkIdType Next()
Returns the next edge in the graph.
Definition:
vtkVertexListIterator.h:67
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:62
vtkGraphEdge
Representation of a single graph edge.
Definition:
vtkGraphEdge.h:39
vtkIndent
a simple class to control print indentation
Definition:
vtkIndent.h:33
vtkObject::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkGraph.h
vtkObject.h
vtkVertexListIterator::End
vtkIdType End
Definition:
vtkVertexListIterator.h:86
vtkVertexListIterator
Iterates all vertices in a graph.
Definition:
vtkVertexListIterator.h:44
vtkGraph
Base class for graph data types.
Definition:
vtkGraph.h:289
Generated on Thu Jun 25 2020 08:30:34 for VTK by
1.8.17