mirror of
https://github.com/mappu/miqt.git
synced 2024-12-23 09:28:36 +00:00
11 lines
223 B
C++
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);
|
|
} |