JKQtPlotter/examples/ui/ui.cpp

19 lines
347 B
C++
Raw Normal View History

#include <QApplication>
#include "formwithjkqtplotter.h"
2022-08-27 04:32:48 +08:00
#include "jkqtpexampleapplication.h"
int main(int argc, char* argv[])
{
2022-08-27 04:32:48 +08:00
JKQTPAppSettingController highDPIController(argc, argv);
JKQTPExampleApplication app(argc, argv);
FormWithJKQTPlotter plot;
plot.show();
plot.resize(600,400);
return app.exec();
}