JKQtPlotter/examples/user_interaction/test_user_interaction_main.cpp

18 lines
321 B
C++
Raw Normal View History

#include <QApplication>
#include "test_user_interaction.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);
TestUserInteraction win;
win.show();
return app.exec();
}