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

0001 /*
0002     SPDX-FileCopyrightText: 2019 Kai Uwe Broulik <kde@privat.broulik.de>
0003 
0004     SPDX-License-Identifier: MIT
0005 */
0006 
0007 #include "test_notifiers.h"
0008 #include <QGuiApplication>
0009 
0010 int main(int argc, char **argv)
0011 {
0012     QGuiApplication app(argc, argv);
0013     Q_UNUSED(app);
0014     TestNotifiers t = TestNotifiers(42);
0015     return 0;
0016 }