#include <IPAddress.h>
#include "SubSpace.h"
Functions | |
std::ostream & | operator<< (std::ostream &Stream, const SubSpace s) |
std::ostream& operator<< | ( | std::ostream & | Stream, | |
const SubSpace | s | |||
) |
00102 { 00103 return Stream << "SubSpaceId: " << s.getId() << " : " << s.getRespIp() << " : " << s.getBackupIp() << "\n NW" << s.getNeighbor(NW) << " N " << s.getNeighbor(N) << " NE " << s.getNeighbor(NE) << "\n W " << s.getNeighbor(W) << " E " << s.getNeighbor(E) << "\n SW:" << s.getNeighbor(SW) << " S " << s.getNeighbor(S) << " SE " << s.getNeighbor(SE) << "\n======================================\n"; 00104 }