mirror of
https://github.com/FAUSheppy/speech-server-client-qt
synced 2025-12-06 00:41:35 +01:00
15 lines
317 B
C++
15 lines
317 B
C++
#include "mainwindow.h"
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
a.setApplicationName("Speech-To-Text");
|
|
a.setOrganizationName("Potaris IT | Yannik Schmidt");
|
|
a.setOrganizationDomain("potaris.de");
|
|
return a.exec();
|
|
}
|