##// END OF EJS Templates
Minor update in project gse_lesia
Minor update in project gse_lesia

File last commit:

r69:d8815b251eb0 default
r72:27e89cd58c8b default
Show More
main.cpp
12 lines | 204 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "mainwindow.h"
#include <lfrxmlwriter.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}