#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 |
00140 { 00141 out << "(x:" << entry.coordinates[0] << ", y:" << entry.coordinates[1] 00142 << ")\nbandwidth = " << entry.bandwidth 00143 << ",\ndelay = " << entry.accessDelay 00144 << ",\ntxMaxQueueTime = " << entry.txMaxQueueTime 00145 << ",\ntxFinished = " << entry.txFinished; 00146 00147 return out; 00148 }