Task-number: QTBUG-113331 Change-Id: I8baa697b4997b05f52acdee0e08d3c368fde5bc2 Reviewed-by: Andy Nichols <andy.nichols@qt.io>
27 lines
533 B
C++
27 lines
533 B
C++
// Copyright (C) 2023 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include <QApplication>
|
|
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
#include "examplewidget.h"
|
|
|
|
//![0]
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
ExampleRhiWidget *rhiWidget = new ExampleRhiWidget;
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout;
|
|
layout->addWidget(rhiWidget);
|
|
|
|
QWidget w;
|
|
w.setLayout(layout);
|
|
w.resize(1280, 720);
|
|
w.show();
|
|
|
|
return app.exec();
|
|
}
|
|
//![0]
|