Computer Science A - 2/7/00 bool clndr::Equal(clndr otherDate) { if(otherDate.month == month && otherDate.day == day && otherDate.year == year) return true; else return false; } bool operator == (const clndr& date1, const clndr& date2) { return (date1.Equal(date2)); }