12 lines
193 B
C++
12 lines
193 B
C++
|
#include <QApplication>
|
||
|
#include "mainwindow.h"
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
QApplication app(argc, argv);
|
||
|
MainWindow mainWin;
|
||
|
|
||
|
mainWin.show();
|
||
|
return app.exec();
|
||
|
}
|