git-svn-id: svn://db.shs.com.ru/libs@227 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2017-05-16 16:45:18 +00:00
parent 84f8714430
commit dee8e4b3bd
125 changed files with 1369 additions and 33 deletions

View File

@@ -0,0 +1,10 @@
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}