File indexing completed on 2024-04-28 16:12:56

0001 /*
0002    SPDX-FileCopyrightText: 2022-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "uploadwidget.h"
0008 #include <QApplication>
0009 int main(int argc, char **argv)
0010 {
0011     QApplication app(argc, argv);
0012     auto widget = new UploadWidget();
0013     widget->resize(600, 400);
0014     widget->show();
0015     app.exec();
0016     return 0;
0017 }