Bjoern Milcke <[EMAIL PROTECTED]> writes: > This appears strange to me, how can I hide a private function of the > base class, it should be hidden anyway. Is this a false alarm of the > compiler, or did I miss something? > Hi Bjoern,
visibility and accessibility are different kind of beasts. One can even become ambiguous because of a private overload. Or NVI: all the virtual functions are private in the base class, i.e. no derived class can call them. Nevertheless, derived classes can still override them. Cheers, -- Thorsten --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
