summaryrefslogtreecommitdiff
path: root/carre.h
blob: 80b9d5729159efbd1e7a2c53579f3cf31642b386 (plain)
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);
};