f1601a4930
(cherry picked from commit 712f5fe0acc7ef73117151cd8206a0d4f5d01428)
14 lines
205 B
C++
14 lines
205 B
C++
#include <QGuiApplication>
|
|
|
|
#include "hellowindow.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QGuiApplication app(argc, argv);
|
|
|
|
HelloWindow window;
|
|
window.setVisible(true);
|
|
|
|
return app.exec();
|
|
}
|