I am implementing a list class with node and iterator, that creates a list of type Ticket, which is an object that i have defined in a class, but when i try to compile it says t
Ticket doesn't have a default constructor, therefore List can't be default-constructed since it inherits from Ticket, and List does not call a base constructor in Ticket.