- #1
rtareen
- 162
- 32
- Homework Statement
- This program will have names and addresses saved in a linked list. In addition, a birthday and anniversary date will be saved with each record. The linked list should be implemented as its own class.
- Relevant Equations
- none
Hi all. I'm working on my final project for a class. The assignment is to have a linked list of personal records, and then do some things with it. Right now I'm working on the linked list class "List.h". I've implemented a Person class "Person.h" as a composition of 3 subclasses "Address.h", "Date.h" and "Name.h". I've attached all of these as text files (I'm not allowed to attach .h files?). I'm able to compile "Address.h", "Date.h", "Name.h" and "Person.h" without any issues. But when I'm trying to compile "List.h" I get some serious compilation errors (attached). The most serious is the one that says my Node struct is implicitly deleted. I need some help on how to solve this without re-doing everything I've already done. Please help.