File indexing completed on 2024-11-24 04:50:43

0001 // SPDX-FileCopyrightText: 2022 Carl Schwan <carlschwan@kde.org>
0002 // SPDX-License-Identifier: LGPL-2.0-or-later
0003 
0004 #pragma once
0005 
0006 #include <Akonadi/Collection>
0007 #include <QObject>
0008 
0009 class MailCollectionHelper : public QObject
0010 {
0011     Q_OBJECT
0012 
0013 public:
0014     Q_INVOKABLE qint64 unreadCount(const Akonadi::Collection &collection);
0015 };