52150469a8
In addition to being an iconic part of Qt's history, wiggly is also widely used for verifying on embedded hardware. Change-Id: Ica86626d98ade2570eebe787860293380c21f96a Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Jan Arve Sæther <jan-arve.saether@qt.io>
17 lines
292 B
C++
17 lines
292 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include "dialog.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
Dialog dialog;
|
|
dialog.show();
|
|
|
|
return app.exec();
|
|
}
|