CuteSchedule/main.cpp

12 lines
176 B
C++
Raw Normal View History

2023-04-06 06:15:45 +02:00
#include "src/mainwindow.h"
2023-04-06 06:10:33 +02:00
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}