Skip to content

Instantly share code, notes, and snippets.

@heronyang
Last active August 3, 2019 21:41
Show Gist options
  • Save heronyang/84084142a7c27719edd37062428a1901 to your computer and use it in GitHub Desktop.
Save heronyang/84084142a7c27719edd37062428a1901 to your computer and use it in GitHub Desktop.
/* point.h */
class Point {
public:
Point(double x, double y);
double getDistance(const Point& p) const;
private:
double x;
double y;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment