1
0
mirror of https://github.com/mappu/miqt.git synced 2025-03-07 16:19:23 +00:00

11 lines
223 B
C++
Raw Normal View History

2024-08-06 10:24:01 +12:00
#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);
}