mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
16 lines
232 B
C++
16 lines
232 B
C++
#include <qapplication.h>
|
|
#include "mainwindow.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication a(argc, argv);
|
|
|
|
MainWindow w;
|
|
w.show();
|
|
#if QT_VERSION < 0x040000
|
|
a.setMainWidget(&w);
|
|
#endif
|
|
|
|
return a.exec();
|
|
}
|