Imagine a QObject
derived class:
class MyObject : public QObject
{
Q_OBJECT;
Q_PROPERTY(bool myBool READ myBool WRITE setMyBool);
//...
}
How do I receive all the properties of the derived class MyObject
only without any of the base classes?