Definition in file NBConnection.cpp.
#include <config.h>
#include <sstream>
#include <iostream>
#include <cassert>
#include "NBEdgeCont.h"
#include "NBEdge.h"
#include "NBConnection.h"
Go to the source code of this file.
Functions | |
| bool | operator< (const NBConnection &c1, const NBConnection &c2) |
| bool operator< | ( | const NBConnection & | c1, | |
| const NBConnection & | c2 | |||
| ) |
Definition at line 138 of file NBConnection.cpp.
References NBConnection::getFrom(), and NBConnection::getTo().
00138 { 00139 return 00140 std::pair<NBEdge*, NBEdge*>(c1.getFrom(), c1.getTo()) 00141 < 00142 std::pair<NBEdge*, NBEdge*>(c2.getFrom(), c2.getTo()); 00143 }
1.5.6