Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
C++
Combining functions with multiple inheritance?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Salt_Peter, post: 3665105"] It is possible, nn your case: class E: public B, public C { public: void f(); }; void E::f() { B::f(); C::f(); } the calls to f() become also automatic. The last thing you want is the language impose a restriction that says that all virtual overides are implicitly called down the hierarchy. [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
C++
Combining functions with multiple inheritance?
Top