#include "VastDefs.h"
Functions | |
std::ostream & | operator<< (std::ostream &Stream, const Point p) |
bool | operator< (const Point a, const Point b) |
std::ostream & | operator<< (std::ostream &Stream, const Site s) |
std::ostream& operator<< | ( | std::ostream & | Stream, | |
const Site | s | |||
) |
00056 { 00057 Stream << "Type: "; 00058 if(s.type & UNDEF) Stream << "Undefined "; 00059 if(s.type & THIS) Stream << "This "; 00060 if(s.type & ENCLOSING) Stream << "Enclosing "; 00061 if(s.type & NEIGHBOR) Stream << "Inner "; 00062 if(s.type & BOUNDARY) Stream << "Boundary "; 00063 if(s.type & NEW) Stream << "Discovered "; 00064 return Stream << " IP: " << s.addr.ip; 00065 }
std::ostream& operator<< | ( | std::ostream & | Stream, | |
const Point | p | |||
) |