data structure lab 1

ahmeddxn7
pointType.h

//Class pointType #ifndef H_PointType #define H_PointType class pointType { public: void setPoint(double x, double y); void print() const; double getX() const; double getY() const; pointType(double x = 0.0, double y = 0.0); protected: double xCoordinate; double yCoordinate; }; #endif