Private and public derivations of inheritance in Cpp? All Questions › Category: Cpp Language › Private and public derivations of inheritance in Cpp? 0 Vote Up Vote Down Chetan Shidling Staff asked 5 years ago I need short information. 1 Answers 0 Vote Up Vote Down Chetan Shidling Staff answered 5 years ago Private and public derivations: class derived : private base //private derivation { members of derived }; class derived : public base //public derivation { members of derived }; class derived : base //private derivation by default { members of derived };