22 Apr
2016
22 Apr
'16
8:33 p.m.
On 4/22/16 1:14 PM, Elizabeta wrote:
Hi but private functions from base are not inherited in the derived right? so serialize should not be seen in the derived class imho. Also why is not wrong, one can forget to write serialize for the derived class.
Derived classes can SEE private base members/functions, they can not access them. This can have effect with overloading (which uses visibility, not accessibility into account) -- Richard Damon