class Date {
  private :
    short jour;
    short mois;
    int annee;
  public :
    Date(short jour, short mois, int annee);
    ~Date();

  bool operator< (const Date &autre) const;

  bool operator== (const Date &autre) const;

  bool operator> (const Date &autre) const;

  bool operator<= (const Date &autre) const;
};
