22 lines
310 B
C
Raw Normal View History

2014-08-03 19:52:23 +02:00
#ifndef GENERATED_H
#define GENERATED_H
#include <QObject>
#include "myinterface.h"
#include "myotherinterface.h"
2018-08-09 18:06:22 +02:00
class Generated
: public QObject
, MyInterface
, MyOtherInterface
2014-08-03 19:52:23 +02:00
{
Q_OBJECT
Q_INTERFACES(MyInterface MyOtherInterface)
public:
2016-07-09 11:21:54 +02:00
explicit Generated(QObject* parent = 0);
2014-08-03 19:52:23 +02:00
};
#endif