The LibraryItemsClass stores the Title and the Due date. The class has two constructors;
- A default constructor that gives the due date a value of 0/0/0
- A constructor that accepts the title and gives the due date a value of 0/0/0
The Class has four functions;
- Getter and setter for the due date
- getter and setter for Title
- a function that returns a boolean value on if its overdue or not. This accepts todays date.
I need to create a derived class for this, but I don't have any ideas? What could I do with this?