2013-11-18 11:09:56 +04:00
|
|
|
|
|
|
|
#ifndef GENERATED_H
|
|
|
|
#define GENERATED_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#include "myinterface.h"
|
2014-03-05 16:43:50 +04:00
|
|
|
#include "myotherinterface.h"
|
2013-11-18 11:09:56 +04:00
|
|
|
|
2014-03-05 16:43:50 +04:00
|
|
|
class Generated : public QObject, MyInterface, MyOtherInterface
|
2013-11-18 11:09:56 +04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2014-03-05 16:43:50 +04:00
|
|
|
Q_INTERFACES(MyInterface MyOtherInterface)
|
2013-11-18 11:09:56 +04:00
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
explicit Generated(QObject* parent = 0);
|
2013-11-18 11:09:56 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|