summaryrefslogtreecommitdiff
path: root/Tests/Qt4Targets/mywrapobject.h
blob: de23540a295c4c04bc2501a6fedd16294b5d6b64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#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