// Point.cpp: implementation of the Point class. // ////////////////////////////////////////////////////////////////////// #include "Point.h" #include ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// Point::Point() { } Point::~Point() { } void Point::show() { cout<<"("<