1#include "Node.h" 2 3std::ostream& operator<< (std::ostream& o, const Node& A) 4{ 5 o << A.tag << ' ' << -1 << ' ' << A.x << ' ' << A.y << " 0\n"; 6 return o; 7} 8 9