/* -*- C++ -*- * Copyright ©2005 Hugo Mills * * This software is distributed under the terms of the GNU GPL v3 * For more information on the GPL, see the file COPYING or * visit http://www.gnu.org/ * * This software is distributed without warranty */ #include "coordinate.h" std::ostream& operator<<(std::ostream& o, const iCoordinate& c) { o << "(" << c.x << ", " << c.y << ")"; return o; } std::ostream& operator<<(std::ostream& o, const Coordinate& c) { o << "(" << c.x << ", " << c.y << ")"; return o; }