#include "VastDefs.h"
Functions | |
std::ostream & | operator<< (std::ostream &Stream, const Site s) |
std::ostream& operator<< | ( | std::ostream & | Stream, | |
const Site | s | |||
) |
00039 { 00040 Stream << "Type: "; 00041 if(s.type & UNDEF) Stream << "Undefined "; 00042 if(s.type & THIS) Stream << "This "; 00043 if(s.type & ENCLOSING) Stream << "Enclosing "; 00044 if(s.type & NEIGHBOR) Stream << "Inner "; 00045 if(s.type & BOUNDARY) Stream << "Boundary "; 00046 if(s.type & NEW) Stream << "Discovered "; 00047 return Stream << " IP: " << s.addr.ip; 00048 }