##// END OF EJS Templates
Last comit before installation on pc-coillot
Last comit before installation on pc-coillot

File last commit:

r14:304f5a6ad6b4 default
r50:47b677d190ee default
Show More
main.cpp
11 lines | 182 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}