#include <sstream>
#include "SimpleNodeEntry.h"
Functions | |
std::ostream & | operator<< (std::ostream &out, const SimpleNodeEntry &entry) |
std::ostream& operator<< | ( | std::ostream & | out, | |
const SimpleNodeEntry & | entry | |||
) |
out | output stream | |
entry | the terminal |
00097 { 00098 out << "(x:" << entry.x << ", y:" << entry.y 00099 << ")\nbandwidth = " << entry.bandwidth 00100 << ",\ndelay = " << entry.accessDelay 00101 << ",\ntxMaxQueueTime = " << entry.txMaxQueueTime 00102 << ",\ntxFinished = " << entry.txFinished; 00103 00104 return out; 00105 }