#include <NBEdge.h>
Definition at line 1024 of file NBEdge.h.
Public Member Functions | |
| connections_finder (int fromLane, NBEdge *const edge2find, int lane2find) | |
| constructor | |
| bool | operator() (const Connection &c) const |
Private Member Functions | |
| connections_finder & | operator= (const connections_finder &s) |
| invalidated assignment operator | |
Private Attributes | |
| NBEdge *const | myEdge2Find |
| int | myFromLane |
| int | myLane2Find |
| NBEdge::connections_finder::connections_finder | ( | int | fromLane, | |
| NBEdge *const | edge2find, | |||
| int | lane2find | |||
| ) | [inline] |
constructor
Definition at line 1027 of file NBEdge.h.
01027 : myFromLane(fromLane), myEdge2Find(edge2find), myLane2Find(lane2find) { }
| bool NBEdge::connections_finder::operator() | ( | const Connection & | c | ) | const [inline] |
Definition at line 1029 of file NBEdge.h.
References NBEdge::Connection::fromLane, myEdge2Find, myFromLane, myLane2Find, NBEdge::Connection::toEdge, and NBEdge::Connection::toLane.
01029 { 01030 return c.fromLane==myFromLane && c.toEdge == myEdge2Find && c.toLane == myLane2Find; 01031 }
| connections_finder& NBEdge::connections_finder::operator= | ( | const connections_finder & | s | ) | [private] |
invalidated assignment operator
NBEdge* const NBEdge::connections_finder::myEdge2Find [private] |
int NBEdge::connections_finder::myFromLane [private] |
int NBEdge::connections_finder::myLane2Find [private] |
1.5.6