mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
15 lines
232 B
C++
15 lines
232 B
C++
#include <QtGui/QApplication>
|
|
#include <QTimer>
|
|
#include "UpdateWindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
UpdateWindow w;
|
|
|
|
w.checkForUpdates();
|
|
// w.show();
|
|
|
|
return a.exec();
|
|
}
|