NodeVector.cc File Reference

#include "NodeVector.h"

Go to the source code of this file.

Functions

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

Detailed Description

Author:
Ingmar Baumgart

Definition in file NodeVector.cc.


Function Documentation

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

Generated on Wed May 26 16:21:15 2010 for OverSim by  doxygen 1.6.3