blob: 231a1fe8b5161a51fd643320f46a0efcf9cb3149 [file] [log] [blame]
#ifndef MYWRAPOBJECT_H
#define MYWRAPOBJECT_H
#include <QObject>
#include "myinterface.h"
class MyWrapObject
: public QObject
, MyInterface
{
Q_OBJECT
Q_INTERFACES(MyInterface)
public:
explicit MyWrapObject(QObject* parent = 0)
: QObject(parent)
{
}
};
#endif