##// END OF EJS Templates
tmstatistics updated
tmstatistics updated

File last commit:

r69:d8815b251eb0 default
r74:98a2ff79bb0a 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();
}