File indexing completed on 2024-05-12 03:54:20

0001 /*
0002     SPDX-FileCopyrightText: 2005 Michael Brade <brade@kde.org>
0003 
0004     SPDX-License-Identifier: MIT
0005 */
0006 
0007 #include "test8a.h"
0008 #include "test8b.h"
0009 #include "test8c.h"
0010 #include <QGuiApplication>
0011 
0012 int main(int argc, char **argv)
0013 {
0014     QGuiApplication app(argc, argv);
0015     Q_UNUSED(app);
0016     Test8a *config1 = new Test8a(KSharedConfig::openConfig(QString()));
0017     Test8a *config2 = new Test8a();
0018     Test8b::self();
0019     Test8c::instance(KSharedConfig::openConfig(QString()));
0020     Test8c::self();
0021     delete config1;
0022     delete config2;
0023     return 0;
0024 }