mirror of
https://github.com/modelec/ihm.git
synced 2026-01-19 00:57:27 +01:00
11 lines
247 B
C++
11 lines
247 B
C++
#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();
|
|
}
|