MailImporter

filterplain.h
1/*
2 filterplain.h - Plain mail import
3
4 SPDX-FileCopyrightText: 2002 Laurence Anderson <l.d.anderson@warwick.ac.uk>
5
6 SPDX-License-Identifier: GPL-2.0-or-later
7*/
8
9#pragma once
10
11#include "filters.h"
12namespace MailImporter
13{
14/**
15 *imports Plain text messages into KMail
16 *@author laurence
17 */
18class MAILIMPORTER_EXPORT FilterPlain : public Filter
19{
20public:
21 FilterPlain();
22 ~FilterPlain() override;
23
24 void import() override;
25 void importMails(const QString &mailDir);
26};
27}
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Jan 24 2025 11:51:15 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.