SVN_SILENT made messages (.desktop file)
[kdepim.git] / mailimporter / filter_lnotes.h
blobdb4ad6f891f5b91f796bfa2fd63ca27a8be8bb18
1 /***************************************************************************
2 filter_lnotes.h - Lotus Notes Structured Text mail import
3 -------------------
4 begin : Wed Feb 16, 2005
5 copyright : (C) 2005 by Robert Rockers
6 email : kconfigure@rockerssoft.com
7 ***************************************************************************/
9 /***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
18 #ifndef MAILIMPORTER_FILTER_LNOTES_HXX
19 #define MAILIMPORTER_FILTER_LNOTES_HXX
21 #include "filters.h"
22 /**imports Lotus Notes Structured Text Archives and archvies messages into KMail
23 *@author Robert Rockers
25 namespace MailImporter{
27 class MAILIMPORTER_EXPORT FilterLNotes : public Filter
29 public:
30 explicit FilterLNotes();
31 ~FilterLNotes();
32 /** Standard import filter... starting line for our import */
33 void import();
35 private:
36 /** the working directory */
37 QDir dir;
38 /** which file (of totalFiles) is now in the work? */
39 int currentFile;
40 /** total number of files that get imported */
41 int totalFiles;
43 /**
44 * This is were all the real action is gonna be handled.
45 * Gets called once for EACH file imported
47 void ImportLNotes(const QString& file );
52 #endif