blob: 5d4e52aec4dec7fe7fa6daf247be4086a931e3c2 [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