/**** * * Implementation of card.h. * * This is fully stubbed implementation, for GUI testing purposes. * */ #include "card.h" #include Card::Card(Name* n, Id id, Age age, Sex s, Address* addr) { printf("In Card::Card\n"); } Card::~Card() { printf("In Card::~Card\n"); } Name* Card::GetName() { printf("In Card::GetName\n"); } Id Card::GetId() { printf("In Card::GetId\n"); } Age Card::GetAge() { printf("In Card::GetAge\n"); } Sex Card::GetSex() { printf("In Card::GetSex\n"); } Address* Card::GetAddr() { printf("In Card::GetAddr\n"); }