NodeVector.cc File Reference


Detailed Description

Author:
Ingmar Baumgart

#include "NodeVector.h"

Functions

std::ostream & operator<< (std::ostream &os, const NodeVector &n)


Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const NodeVector n 
)

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 };


Generated on Fri Sep 19 13:05:05 2008 for ITM OverSim by  doxygen 1.5.5