#include "PastryLeafSet.h"
#include "PastryTypes.h"
#include "NodeVector.h"
Functions | |
Define_Module (PastryLeafSet) | |
std::ostream & | operator<< (std::ostream &os, const NodeVector &n) |
Define_Module | ( | PastryLeafSet | ) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const NodeVector & | n | |||
) |
00031 { 00032 for (NodeVector::const_iterator i=n.begin(); i !=n.end(); i++) { 00033 os << *i; 00034 if (i+1 != n.end()) 00035 os << endl; 00036 } 00037 return os; 00038 };