qt_demoe/qwtdemo/examples/bode/main.cpp

14 lines
205 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( 540, 400 );
w.show();
return a.exec();
}