generated.h 302 B

123456789101112131415161718
  1. #ifndef GENERATED_H
  2. #define GENERATED_H
  3. #include <QObject>
  4. #include "myinterface.h"
  5. #include "myotherinterface.h"
  6. class Generated : public QObject, MyInterface, MyOtherInterface
  7. {
  8. Q_OBJECT
  9. Q_INTERFACES(MyInterface MyOtherInterface)
  10. public:
  11. explicit Generated(QObject* parent = 0);
  12. };
  13. #endif