##// END OF EJS Templates
Adding metatype declarations in qml plugin for Qt5...
Adding metatype declarations in qml plugin for Qt5 Not sure why they are needed for Qt5. Definetly NOT needed for Qt4.

File last commit:

r2229:bee551388900
r2257:b97c592cff78
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
Marek Rosa
Added simple demoLauncher application
r2229 #include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}