mywrapobject.h 278 B

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