CMake Nightly Date Stamp
[kiteware-cmake.git] / Tests / Qt4Targets / main_gen_test.cpp
blob6616e844cb731fb74bcc711b9505ce253fc35e04
2 #include <QObject>
4 #include "myinterface.h"
6 class MyObject
7 : public QObject
8 , MyInterface
10 Q_OBJECT
11 Q_INTERFACES(MyInterface)
12 public:
13 explicit MyObject(QObject* parent = 0)
14 : QObject(parent)
19 int main(int argc, char** argv)
21 MyObject mo;
22 mo.objectName();
23 return 0;
26 #include "main_gen_test.moc"