generated.h 237 B

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