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

0001 /*
0002     SPDX-FileCopyrightText: 2003 Cornelius Schumacher <schumacher@kde.org>
0003 
0004     SPDX-License-Identifier: MIT
0005 */
0006 #include "test3.h"
0007 #include <QGuiApplication>
0008 
0009 int main(int argc, char **argv)
0010 {
0011     QGuiApplication app(argc, argv);
0012     Q_UNUSED(app);
0013     TestNameSpace::Test3 *t = new TestNameSpace::Test3();
0014     delete t;
0015     return 0;
0016 }