aboutsummaryrefslogtreecommitdiffstats
path: root/examples/platforms/android/models/qtabstractitemmodel/main.cpp
blob: 4442ea75b2b6e8cde777ec3673a0a487e7f2cea5 (plain)
1
2
3
4
5
6
7
8
9
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <QGuiApplication>

int main(int argc, char *argv[])
{
    QGuiApplication app(argc, argv);
    return app.exec();
}