##// END OF EJS Templates
Sync
Sync

File last commit:

r69:d8815b251eb0 default
r71:ac87a731be3a 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();
}