Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          constructors-initialization-assignment/rect.h - The Rectangle class - header file.Lecture 4 - slide 8 : 41
Program 1

#include "point.h"

class Rectangle{
private:
  Point upper_left, lower_right;

public:
  Rectangle();
  Rectangle(Point p1, Point p2);
  Rectangle(double x1, double y1, double x2, double y2);
 
  // other methods
};