##// END OF EJS Templates
Simple UI testing added using mago(LDTP):...
Simple UI testing added using mago(LDTP): -new basic test application added -new script added

File last commit:

r2132:45eed4d8b56a
r2132:45eed4d8b56a
Show More
main.cpp
11 lines | 174 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}