File indexing completed on 2024-05-12 05:17:15

0001 /*
0002     SPDX-FileCopyrightText: 2009 Andras Mantia <amantia@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "job_p.h"
0010 #include "response_p.h"
0011 #include "session.h"
0012 
0013 #include <QMap>
0014 
0015 namespace KIMAP
0016 {
0017 class QuotaJobBasePrivate : public JobPrivate
0018 {
0019 public:
0020     QuotaJobBasePrivate(Session *session, const QString &name)
0021         : JobPrivate(session, name)
0022     {
0023     }
0024 
0025     ~QuotaJobBasePrivate()
0026     {
0027     }
0028     static QMap<QByteArray, QPair<qint64, qint64>> readQuota(const Response::Part &content);
0029 
0030     QMap<QByteArray, QPair<qint64, qint64>> quota;
0031 };
0032 }