1 2 3 4 5 6 7 8
#include "rectangle.h" class Carre : public Rectangle { public: Carre(int x, int y, int cote); ~Carre(); void afficher(ostream &s); };