//tabtenn0.cpp -- simple base class methods #include "tabtenn0.h" #include #include using namespace std; TableTennisPlayer::TableTennisPlayer (const char * fn, const char * ln, bool ht) { strncpy(firstname, fn, LIM - 1); firstname[LIM - 1] = '\0'; strncpy(lastname, ln, LIM - 1); lastname[LIM - 1] = '\0'; hasTable = ht; } void TableTennisPlayer::Name() const { cout << lastname << ", " << firstname; }