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