#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 |
00100 { 00101 out << "(x:" << entry.x << ", y:" << entry.y 00102 << ")\nbandwidth = " << entry.bandwidth 00103 << ",\ndelay = " << entry.accessDelay 00104 << ",\ntxMaxQueueTime = " << entry.txMaxQueueTime 00105 << ",\ntxFinished = " << entry.txFinished; 00106 00107 return out; 00108 }