#include "PeerInfo.h"
Functions | |
std::ostream & | operator<< (std::ostream &Stream, const PeerInfo info) |
std::ostream& operator<< | ( | std::ostream & | Stream, | |
const PeerInfo | info | |||
) |
os | the ostream | |
info | the PeerInfo |
00039 { 00040 Stream << "ModuleId: " << info.moduleId << "Bootstrapped: "; 00041 if(info.bootstrapped) { 00042 return Stream << "true"; 00043 } 00044 else { 00045 return Stream << "false"; 00046 } 00047 }