mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
14 lines
206 B
C++
14 lines
206 B
C++
#include <qapplication.h>
|
|
#include "mainwindow.h"
|
|
|
|
int main ( int argc, char **argv )
|
|
{
|
|
QApplication a( argc, argv );
|
|
|
|
MainWindow w;
|
|
w.resize( 1000, 800 );
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|