Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          friends/point-with-operator-friend/point.h - Class Point - header file.Lecture 3 - slide 32 : 36
Program 1

class Point {
private: 
  double x, y;

public:
  friend std::ostream& operator<<(std::ostream&, const Point&);
  Point(double, double);
  Point();
  double getx () const;
  double gety () const;
  void move(double, double);
  double distance_to(Point);
};