mywrapobject.h 270 B

1234567891011121314151617
  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) : QObject(parent) { }
  11. };
  12. #endif