File indexing completed on 2024-05-12 15:34:03

0001 /*
0002     SPDX-FileCopyrightText: 2009 Pino Toscano <pino@kde.org>
0003 
0004     SPDX-License-Identifier: MIT
0005 */
0006 #include "test11.h"
0007 #include "test11a.h"
0008 #include <QGuiApplication>
0009 
0010 int main(int argc, char **argv)
0011 {
0012     QGuiApplication app(argc, argv);
0013     Q_UNUSED(app);
0014     Test11 *t = new Test11();
0015     Test11a *t2 = new Test11a();
0016     delete t;
0017     delete t2;
0018     return 0;
0019 }