mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-07 19:50:45 +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();
|
||
|
}
|