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