#include "NodeVector.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const NodeVector &n) |
Definition in file NodeVector.cc.
std::ostream& operator<< | ( | std::ostream & | os, | |
const NodeVector & | n | |||
) |
Definition at line 28 of file NodeVector.cc.
{ for (NodeVector::const_iterator i=n.begin(); i !=n.end(); i++) { os << *i; if (i+1 != n.end()) { os << endl; } } return os; };