First page Back Continue Last page Graphics
Derived Constructor
- RatedPlayer::RatedPlayer(
- unsigned int r,
- const char * fn,
- const char * ln,
- bool ht) : TableTennisPlayer(
- fn, ln, ht)
- {
- rating = r;
- }
TableTennisPlayer(...) is the member initializer list and calls the TableTennisPlayer constructor.