1
0
mirror of https://github.com/mappu/miqt.git synced 2025-05-21 18:40:26 +00:00

11 lines
223 B
C++

#include "../binding.h"
int main(int argc, char** argv) {
PQApplication app = QApplication_new(&argc, argv);
PQWidget w = QWidget_new();
QWidget_show(w);
return QApplication_exec(app);
}