#include "Point.h" ... void Point::ToString(ostream *out) const { (*out) << "(" << x << ";" << y << ")"; } ...