This commit is contained in:
2024-01-25 14:43:33 +01:00
parent ba192ed4bf
commit 66b84f1c86
25 changed files with 2969 additions and 0 deletions

10
main.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include <QApplication>
#include <QPushButton>
int main(int argc, char* argv[]) {
QApplication a(argc, argv);
QPushButton button("Hello world!", nullptr);
button.resize(200, 100);
button.show();
return QApplication::exec();
}