##// END OF EJS Templates
Sync
Sync

File last commit:

r69:d8815b251eb0 default
r79:8c1b75ec2ddc tip default
Show More
main.cpp
11 lines | 182 B | text/x-c | CppLexer
librairies reorganized, parameterdump suppressed, included in paulcommon
r69 #include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}