cmake/Tests/Qt4Targets/mywrapobject.h

23 lines
283 B
C
Raw Normal View History

2013-11-03 12:27:13 +02:00
#ifndef MYWRAPOBJECT_H
#define MYWRAPOBJECT_H
#include <QObject>
#include "myinterface.h"
2018-08-09 18:06:22 +02:00
class MyWrapObject
: public QObject
, MyInterface
2013-11-03 12:27:13 +02:00
{
Q_OBJECT
Q_INTERFACES(MyInterface)
public:
2016-07-09 11:21:54 +02:00
explicit MyWrapObject(QObject* parent = 0)
: QObject(parent)
{
}
2013-11-03 12:27:13 +02:00
};
#endif