#include <sstream>
#include "SimpleNodeEntry.h"
#include "IPAddressResolver.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 |
00103 { 00104 out << "(x:" << entry.x << ", y:" << entry.y 00105 << ")\nbandwidth = " << entry.bandwidth 00106 << ",\ndelay = " << entry.accessDelay 00107 << ",\ntxMaxQueueTime = " << entry.txMaxQueueTime 00108 << ",\ntxFinished = " << entry.txFinished; 00109 00110 return out; 00111 }