summaryrefslogtreecommitdiff
path: root/carre.h
blob: bf1cc84747b20f1cf6cdf926acf20c15ee124c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __CARRE_H__
#define __CARRE_H__

#include "rectangle.h"

class Carre : public Rectangle {
public:
    Carre(int x=0, int y=0, int cote=1);
    ~Carre();
    void afficher(ostream &s);
};

#endif