4 #ifndef BACKPROJECT_UTIL_H 5 #define BACKPROJECT_UTIL_H 39 Point(
double x,
double y);
70 void sleep(
double seconds);
75 void PressEnterToContinue();
79 void PressEnterToContinue(std::ostream &os,std::istream &is);
81 #endif //BACKPROJECT_UTIL_H double y
the y ordinate of the point.
Definition: util.h:32
double x
the x ordinate of the point
Definition: util.h:28
Point()
the default constructor, necessary since a non-default constructor has been specified; the compiler w...
Definition: util.cpp:16
Represents a 2 dimensional coordinate in an as yet unspecified unit (e.g.
Definition: util.h:23