Access Control Example: Part 1
// note, private is the default
base::example_func_base()
a = priv; a = privf(); // OK
a = prot; a = protf(); // OK
a = pub; a = pubf(); // OK
a=b->priv; a=b->privf(); // error
a=b->prot; a=b->protf(); // error
a=b->pub; a=b->pubf(); // OK