#include <NBEdge.h>
Definition at line 1001 of file NBEdge.h.
Public Member Functions | |
| connections_toedgelane_finder (NBEdge *const edge2find, int lane2find) | |
| constructor | |
| bool | operator() (const Connection &c) const |
Private Member Functions | |
| connections_toedgelane_finder & | operator= (const connections_toedgelane_finder &s) |
| invalidated assignment operator | |
Private Attributes | |
| NBEdge *const | myEdge2Find |
| int | myLane2Find |
| NBEdge::connections_toedgelane_finder::connections_toedgelane_finder | ( | NBEdge *const | edge2find, | |
| int | lane2find | |||
| ) | [inline] |
constructor
Definition at line 1004 of file NBEdge.h.
01004 : myEdge2Find(edge2find), myLane2Find(lane2find) { }
| bool NBEdge::connections_toedgelane_finder::operator() | ( | const Connection & | c | ) | const [inline] |
Definition at line 1006 of file NBEdge.h.
References myEdge2Find, myLane2Find, NBEdge::Connection::toEdge, and NBEdge::Connection::toLane.
01006 { 01007 return c.toEdge == myEdge2Find && c.toLane == myLane2Find; 01008 }
| connections_toedgelane_finder& NBEdge::connections_toedgelane_finder::operator= | ( | const connections_toedgelane_finder & | s | ) | [private] |
invalidated assignment operator
NBEdge* const NBEdge::connections_toedgelane_finder::myEdge2Find [private] |
int NBEdge::connections_toedgelane_finder::myLane2Find [private] |
1.5.6