4
0
mirror of https://github.com/QuasarApp/SoundBand.git synced 2025-04-30 09:14:33 +00:00
2018-08-16 20:59:30 +03:00

12 lines
172 B
C++

#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}