Important! All QtWraps macros renamed! Qt 6 support Graphic export feature qad_types cross-Qt small changes
12 lines
175 B
C++
12 lines
175 B
C++
#include <QApplication>
|
|
#include "pidumper.h"
|
|
|
|
|
|
int main(int argc, char * argv[]) {
|
|
QApplication a(argc, argv);
|
|
enableHighDPI();
|
|
PIDumper w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|