Eclipse SUMO - Simulation of Urban MObility
|
Interface for building instances of dfrouter-edges. More...
#include <RODFEdgeBuilder.h>
Public Member Functions | |
RODFEdgeBuilder () | |
Constructor. | |
~RODFEdgeBuilder () | |
Destructor. | |
Methods to be implemented, inherited from ROAbstractEdgeBuilder | |
ROEdge * | buildEdge (const std::string &name, RONode *from, RONode *to, const int priority) |
Builds an edge with the given name. | |
Protected Member Functions | |
int | getNextIndex () |
Returns the index of the edge to built. | |
Private Attributes | |
int | myCurrentIndex |
The next edge's index. | |
Interface for building instances of dfrouter-edges.
This ROAbstractEdgeBuilder implementation builds edges for the duarouter (instances of RODFEdge).
Definition at line 47 of file RODFEdgeBuilder.h.
RODFEdgeBuilder::RODFEdgeBuilder | ( | ) |
Constructor.
Definition at line 32 of file RODFEdgeBuilder.cpp.
RODFEdgeBuilder::~RODFEdgeBuilder | ( | ) |
Destructor.
Definition at line 35 of file RODFEdgeBuilder.cpp.
|
virtual |
Builds an edge with the given name.
This implementation builds a RODFEdge.
[in] | name | The name of the edge |
[in] | from | The node the edge begins at |
[in] | to | The node the edge ends at |
[in] | priority | The edge priority (road class) |
Implements ROAbstractEdgeBuilder.
Definition at line 39 of file RODFEdgeBuilder.cpp.
References ROAbstractEdgeBuilder::getNextIndex().
|
inlineprotectedinherited |
Returns the index of the edge to built.
Definition at line 80 of file ROAbstractEdgeBuilder.h.
References ROAbstractEdgeBuilder::myCurrentIndex.
Referenced by AGStreet::Builder::buildEdge(), buildEdge(), RODUAEdgeBuilder::buildEdge(), ROJTREdgeBuilder::buildEdge(), and ROMAEdgeBuilder::buildEdge().
|
privateinherited |
The next edge's index.
Definition at line 87 of file ROAbstractEdgeBuilder.h.
Referenced by ROAbstractEdgeBuilder::getNextIndex().