NlMakesis Y-Browser Y-Tasks
Hi,
I have a class which is derived from ctimer and cmmfcontroller. Now when i create an object of my class using new n push it to the clean up stack, the compiler gives an error class "cbase" is ambiguous. Can anybody help me?
You are not allowed to derive from two C classes at the same time.
Change your design. (either put the CTimer or the CMMFController in its own class, and let the other own an instance of it)
Forum posts: 1246
You are not allowed to derive from two C classes at the same time.
Change your design. (either put the CTimer or the CMMFController in its own class, and let the other own an instance of it)