I have a fairly complex set of C++ classes that are re-written from Java. So each class has a single inherited class, and then it also implements one or more abstract classes (or interfaces).
Is it possible to use qobject_cast() to convert from a class to one of the interfaces? If I derive all interfaces from QObject, I get an error due to ambiguous QObject references. If however, I only have the base class inherited from QObject, I can’t use qobject_cast() because that operates with QObjects.
I’d like to be able to throw around classes between plugins and DLLs referred to by their interfaces.
After some research and reading the qobject_cast documentation, I found this:
Here is the link to the example: Plug & Paint.
After digging up the interfaces header in the example, I found the Q_DECLARE_INTERFACE macro that should let you do what you want.
First, do not inherit
QObjectfrom your interfaces. For every interface you have, use the Q_DECLARE_INTERFACE declaration like this:Then in your class definition, use the Q_INTERFACES macro, like this:
After all this trouble, the following code works: