39 Date(
const int day = 1,
const int month = 1,
const int year = 2000);
67 void setDate(
const int day,
const int month,
const int year);
88 void setDay(
const int day);
150 #ifdef NO_VIRTUAL_COV
std::string getDateStr() const
Get the Date as a string.
int getMonth() const
Get the month as an int.
void setYear(const int year)
Set the year.
int getYear() const
Get the Year as an int.
bool operator==(const Date &date) const
The == operator.
void setDay(const int day)
Set the day.
bool operator!=(const Date &date) const
The != operator.
Date(const int day=1, const int month=1, const int year=2000)
Build a new Date from three values.
bool operator<=(const Date &date) const
The <= operator.
void setMonth(const int month)
Set the month.
bool operator>(const Date &date) const
The > operator.
bool operator>=(const Date &date) const
The >= operator.
bool operator<(const Date &date) const
The < operator.
Date & operator=(const Date &date)
The Date copy operator.
~Date()
Destroy the Date object.
void setDate(const int day, const int month, const int year)
Set the Date.
int getDay() const
Get the day as an int.