blob: 6616e844cb731fb74bcc711b9505ce253fc35e04 [file] [log] [blame]
#include <QObject>
#include "myinterface.h"
class MyObject
: public QObject
, MyInterface
{
Q_OBJECT
Q_INTERFACES(MyInterface)
public:
explicit MyObject(QObject* parent = 0)
: QObject(parent)
{
}
};
int main(int argc, char** argv)
{
MyObject mo;
mo.objectName();
return 0;
}
#include "main_gen_test.moc"