You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
495 B
19 lines
495 B
/* |
|
SPDX-FileCopyrightText: 2012-2020 Laurent Montel <montel@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef ARCHIVEMAILAGENTUTIL_H |
|
#define ARCHIVEMAILAGENTUTIL_H |
|
|
|
#include "archivemailinfo.h" |
|
#include <QDate> |
|
|
|
namespace ArchiveMailAgentUtil { |
|
static QString archivePattern = QStringLiteral("ArchiveMailCollection %1"); |
|
Q_REQUIRED_RESULT QDate diffDate(ArchiveMailInfo *info); |
|
Q_REQUIRED_RESULT bool needToArchive(ArchiveMailInfo *info); |
|
} |
|
|
|
#endif // ARCHIVEMAILAGENTUTIL_H
|
|
|