#include "Node.h"

std::ostream& operator<< (std::ostream& o, const Node& A)
{
	o << A.tag << ' ' << -1 << ' ' << A.x << ' ' << A.y << " 0\n";
	return o;
}


syntax highlighted by Code2HTML, v. 0.9.1