#include <graph.h>
Inheritance diagram for StaticGraph::Node:
Definition at line 69 of file graph.h.
Public Member Functions | |
Node () | |
Default constructor. | |
Node (const Node &) | |
Copy constructor. | |
Node (Invalid) | |
Invalid constructor & conversion. | |
bool | operator== (Node) const |
Equality operator. | |
bool | operator!= (Node) const |
Inequality operator. | |
bool | operator< (Node) const |
Comparison operator. |
|
|
|
|
This constructor initializes the iterator to be invalid.
|
|
Two iterators are equal if and only if they point to the same object or both are invalid. Definition at line 91 of file graph.h. |
|
|
|
This is a strict ordering between the nodes. This ordering can be different from the order in which NodeIt goes through the nodes.
|