Okay so I\'m a bit of a noob at C++ and in my second assignment I am required to make classes with public and private arguments etc, etc. Basically the mutator functions won\'t
You've declared PhoneNumber_, Name_ and Address_ as string. But in the setter methods, you are passing unsigned (int)
PhoneNumber_
Name_
Address_
string
unsigned (int)
Also, you have reversed the usage of getters and setters!
Also, the return types of setters can be just void and not const void.
void
const void