JKQtPlotter/examples/ui/ui.cpp
2022-08-26 22:32:48 +02:00

19 lines
347 B
C++

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