Functions

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.

{
    for (NodeVector::const_iterator i=n.begin(); i !=n.end(); i++) {
        os << *i;
        if (i+1 != n.end()) {
            os << endl;
        }
    }

    return os;
};