Files
GoldenCheetah/qwt/examples/bode/main.cpp
2013-12-09 10:02:47 +00:00

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();
}