JKQtPlotter/examples/simpletest_ui/jkqtplotter_simpletest_ui.cpp

15 lines
228 B
C++
Raw Normal View History

#include <QApplication>
#include "formwithjkqtplotter.h"
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
FormWithJKQtPlotter plot;
plot.show();
plot.resize(600,400);
return app.exec();
}