2024-08-18 13:57:57 +03:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
|
2024-08-19 02:35:16 +03:00
|
|
|
int main(int argc, char *argv[]) {
|
2024-08-31 22:18:54 +03:00
|
|
|
|
2024-08-18 13:57:57 +03:00
|
|
|
QApplication a(argc, argv);
|
|
|
|
MainWindow w;
|
|
|
|
w.show();
|
2024-08-24 00:45:47 +03:00
|
|
|
|
2024-08-18 13:57:57 +03:00
|
|
|
return a.exec();
|
|
|
|
}
|