Qdbusxml2cpp and QDBusAbstractAdaptor Limitations

Issue #1:

Object implementing two different interfaces, both having a method named "Bar"

<interface name="org.drdanz.foo"> <method name="Bar"> </interface> <interface name="org.drdanz.boo"> <method name="Bar"> </interface>

The adaptor code generated by qdbusxml2cpp is something like

[…] QString fooAdaptor::Bar() const { // handle method call home.drdanz.foo.Bar parent()->Bar(); } […] QString booAdaptor::Bar() const { // handle method call home.drdanz.boo.Bar parent()->Bar(); […]