File indexing completed on 2024-12-22 04:56:53

0001 /*
0002    SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <KJob>
0010 #include <QObject>
0011 
0012 class NewMailNotifierOpenFolderJob : public KJob
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit NewMailNotifierOpenFolderJob(const QString &identifier, QObject *parent = nullptr);
0017     ~NewMailNotifierOpenFolderJob() override;
0018 
0019     void start() override;
0020 
0021 private:
0022     const QString mIdentifer;
0023 };