qt_demoe/qwtdemo/examples/scatterplot/main.cpp

14 lines
204 B
C++
Raw Normal View History

2019-11-07 02:55:57 +00:00
#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();
}