Tutorial Question Class derivation

Hello,

I'm still studying the Tutorial and think this is a failure:
If it is .... everything is clear....
If it's not ... help me!!!

Tutorial Page 102:
1
2
class derived_class_name: public base_class_name
{ /*...*/ };

This access specifier describes the MINIMUM access level for the members that are inherited from the base class. --> should be MAXIMUM!?

Tutorial Page 104:
class daughter: protected mother;
104: keyword after the colon (:) denotes the MAXIMUM access level for all the members inherited from the class that follows it (in this case CPolygon).

Thanks!
Topic archived. No new replies allowed.