cmake/Tests/Qt4Targets/main_gen_test.cpp
2018-08-09 18:06:22 +02:00

27 lines
333 B
C++

#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"