File indexing completed on 2024-11-24 04:39:31

0001 /*
0002     This file is part of Contact Editor.
0003 
0004     SPDX-FileCopyrightText: 2016 eyeOS S.L.U., a Telefonica company, sales@eyeos.com
0005     SPDX-FileCopyrightText: 2016-2020 Laurent Montel <montel.org>
0006 
0007     SPDX-License-Identifier: LGPL-2.0-or-later
0008 */
0009 
0010 #include "../generalinfowidget.h"
0011 #include <QApplication>
0012 using namespace Akonadi;
0013 int main(int argc, char *argv[])
0014 {
0015     QApplication app(argc, argv);
0016 
0017     Akonadi::GeneralInfoWidget w;
0018     w.show();
0019     return app.exec();
0020 }