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

14 lines
201 B
C++

#include <qapplication.h>
#include "mainwindow.h"
int main( int argc, char **argv )
{
QApplication a( argc, argv );
MainWindow w;
w.resize( 800, 600 );
w.show();
return a.exec();
}