mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-17 12:44:38 +03:00
12 lines
192 B
C++
12 lines
192 B
C++
#include <QApplication>
|
|
#include <QPushButton>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app (argc, argv);
|
|
|
|
QPushButton button ("Hello world !");
|
|
button.show();
|
|
|
|
return app.exec();
|
|
} |