mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 11:32:42 +01:00
13 lines
191 B
C++
13 lines
191 B
C++
|
#include "src/mainwindow.h"
|
||
|
#include <QApplication>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
MainWindow w;
|
||
|
w.show();
|
||
|
w.close();
|
||
|
|
||
|
return a.exec();
|
||
|
}
|