#include <NBEdge.h>
Definition at line 948 of file NBEdge.h.
Public Member Functions | |
| bool | operator() (const TLSDisabledConnection &e) const |
| tls_disable_finder (const TLSDisabledConnection &tpl) | |
| constructor | |
Private Member Functions | |
| tls_disable_finder & | operator= (const tls_disable_finder &s) |
| invalidated assignment operator | |
Private Attributes | |
| TLSDisabledConnection | myDefinition |
| NBEdge::tls_disable_finder::tls_disable_finder | ( | const TLSDisabledConnection & | tpl | ) | [inline] |
| bool NBEdge::tls_disable_finder::operator() | ( | const TLSDisabledConnection & | e | ) | const [inline] |
Definition at line 953 of file NBEdge.h.
References NBEdge::TLSDisabledConnection::fromLane, myDefinition, NBEdge::TLSDisabledConnection::to, and NBEdge::TLSDisabledConnection::toLane.
00953 { 00954 if (e.to!=myDefinition.to) { 00955 return false; 00956 } 00957 if (e.fromLane!=myDefinition.fromLane) { 00958 return false; 00959 } 00960 if (e.toLane!=myDefinition.toLane) { 00961 return false; 00962 } 00963 return true; 00964 }
| tls_disable_finder& NBEdge::tls_disable_finder::operator= | ( | const tls_disable_finder & | s | ) | [private] |
invalidated assignment operator
1.5.6