2025-02-19 13:58:04 +01:00
|
|
|
#include <QApplication>
|
2025-02-19 15:23:20 +01:00
|
|
|
#include "mainwindow.h"
|
2025-02-19 13:58:04 +01:00
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
2025-02-19 15:23:20 +01:00
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
MainWindow mainWindow;
|
|
|
|
|
|
|
|
|
|
mainWindow.show();
|
|
|
|
|
return app.exec();
|
2025-02-19 13:58:04 +01:00
|
|
|
}
|