MailImporter

filterlnotes.h
1/*
2 filterlnotes.h - Lotus Notes Structured Text mail import
3
4 SPDX-FileCopyrightText: 2005 Robert Rockers <kconfigure@rockerssoft.com>
5
6 SPDX-License-Identifier: GPL-2.0-or-later
7*/
8
9#pragma once
10
11#include "filters.h"
12namespace MailImporter
13{
14class FilterLNotesPrivate;
15/**
16 * imports Lotus Notes Structured Text Archives and archives messages into KMail
17 * @author Robert Rockers
18 */
19class MAILIMPORTER_EXPORT FilterLNotes : public Filter
20{
21public:
23 ~FilterLNotes() override;
24 /** Standard import filter... starting line for our import */
25 void import() override;
26
27private:
28 std::unique_ptr<FilterLNotesPrivate> const d;
29 /**
30 * This is were all the real action is gonna be handled.
31 * Gets called once for EACH file imported
32 */
33 MAILIMPORTER_NO_EXPORT void ImportLNotes(const QString &file);
34};
35}
imports Lotus Notes Structured Text Archives and archives messages into KMail
~FilterLNotes() override
Destructor.
The Filter class.
Definition filters.h:29
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:39 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.