Курсовая работа: Об’єктно-орієнтована програма обліку продуктового магазину
}
else return false;
}
else return false;
}
6. Date.h
#ifndef DateH
#define DateH
class Date
{ int Day;
int Month;
int Year;
long X;
AnsiString Name;
public: bool load(int d,int m,int y);
bool load(const AnsiString &s);
int day(){return Day;}
int month(){return Month;}
int year(){return Year;}
const char& str(){return Str.c_str();}
const Date& operator=(const Date &D){Day = D.Day; Month = D.Month; Year = D.Year;}
bool operator>(const Date &D){return X>D.X;}
bool operator>=(const Date &D){return X>=D.X;}
bool operator<(const Date &D){return X<D.X;}
bool operator<=(const Date &D){return X<=D.X;}
bool operator==(const Date &D){return X==D.X;}
bool operator!=(const Date &D){return X==D.X;}
};
7. Main.cpp