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