#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.
00029 { 00030 for (NodeVector::const_iterator i=n.begin(); i !=n.end(); i++) { 00031 os << *i; 00032 if (i+1 != n.end()) { 00033 os << endl; 00034 } 00035 } 00036 00037 return os; 00038 };