mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
18 lines
321 B
C++
18 lines
321 B
C++
#include <QApplication>
|
|
#include "test_user_interaction.h"
|
|
#include "jkqtpexampleapplication.h"
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
|
|
JKQTPAppSettingController highDPIController(argc, argv);
|
|
JKQTPExampleApplication app(argc, argv);
|
|
|
|
|
|
TestUserInteraction win;
|
|
win.show();
|
|
|
|
return app.exec();
|
|
}
|