Hierarchy inheritance

Posted by reito on Stack Overflow See other posts from Stack Overflow or by reito
Published on 2010-11-10T11:47:32Z Indexed on 2011/03/13 8:10 UTC
Read the original article Hit count: 211

Filed under:
|
|
|
|

I had faced the problem. In my C++ hierarchy tree I have two branches for entities of difference nature, but same behavior - same interface. I created such hierarchy trees (first in image below). And now I want to work with Item or Base classes independetly of their nature (first or second). Then I create one abstract branch for this use. My mind build (second in image below). But it not working. Working scheme seems (third in image below). It's bad logic, I think... Do anybody have some ideas about such hierarchy inheritance? How make it more logical? More simple for understanding?

Image

Sorry for my english - russian internet didn't help:)

Update: You ask me to be more explicit, and I will be.

In my project (plugins for Adobe Framemaker) I need to work with dialogs and GUI controls. In some places I working with WinAPI controls, and some other places with FDK (internal Framemaker) controls, but I want to work throw same interface.

I can't use one base class and inherite others from it, because all needed controls - is a hierarchy tree (not one class).

So I have one hierarchy tree for WinAPI controls, one for FDK and one abstract tree to use anyone control.

For example, there is an Edit control (WinEdit and FdkEdit realization), a Button control (WinButton and FdkButton realization) and base entity - Control (WinControl and FdkControl realization).

For now I can link my classes in realization trees (Win and Fdk) with inheritence between each of them (WinControl is base class for WinButton and WinEdit; FdkControl is base class for FdkButton and FdkEdit). And I can link to abstract classes (Control is base class for WinControl and FdkControl; Edit is base class for WinEdit and FdkEdit; Button is base class for WinButton and FdkButton). But I can't link my abstract tree - compiler swears.

In fact I have two hierarchy trees, that I want to inherite from another one.

Update:
I have done this quest! :)
I used the virtual inheritence and get such scheme (http://img12.imageshack.us/img12/7782/99614779.png). Abstract tree has only absolute abstract methods. All inheritence in abstract tree are virtual. Link from realization tree to abstract are virtual. On image shown only one realization tree for simplicity.
Thanks for help!

© Stack Overflow or respective owner

Related posts about c++

Related posts about oop