Definition in file NBContHelper.cpp.
#include <config.h>
#include <vector>
#include <map>
#include <cassert>
#include "NBContHelper.h"
#include <utils/geom/GeomHelper.h>
Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &os, const EdgeVector &ev) |
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const EdgeVector & | ev | |||
| ) |
Definition at line 179 of file NBContHelper.cpp.
00179 { 00180 for (EdgeVector::const_iterator i=ev.begin(); i!=ev.end(); i++) { 00181 if (i!=ev.begin()) { 00182 os << ", "; 00183 } 00184 os << (*i)->getID(); 00185 } 00186 return os; 00187 }
1.5.6