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

This commit is contained in:
2016-07-22 20:13:49 +00:00
parent 50ebcc160f
commit 1f71f140eb
46 changed files with 2038 additions and 0 deletions

10
cd_utils/pult/main.cpp Normal file
View File

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