//tabtenn0.cpp -- simple base class methods

#include <iostream>
#include <cstring>
using namespace std;

#include "tabtenn0.h"

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;
}

