one entry for korganizer in khelpcenters navigation tree is enough
[kdepim.git] / kmailcvt / filter_lnotes.hxx
blobcb36273eab275b46e2f2d8ad22538f3ece7f95e6
1 /***************************************************************************
2 filter_lnotes.hxx - 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 FILTER_LNOTES_HXX
19 #define FILTER_LNOTES_HXX
21 #include "filters.hxx"
23 /**imports Lotus Notes Structured Text Archives and archvies messages into KMail
24 *@author Robert Rockers
27 class FilterLNotes : public Filter {
29 public:
30 FilterLNotes();
31 ~FilterLNotes();
32 /** Standard import filter... starting line for our import */
33 void import(FilterInfo *info);
35 private:
36 /** the working directory */
37 QDir dir;
38 /** Our Filterinfo stuff... important methods for getting the email imported */
39 FilterInfo * inf;
40 /** which file (of totalFiles) is now in the work? */
41 int currentFile;
42 /** total number of files that get imported */
43 int totalFiles;
45 /**
46 * This is were all the real action is gonna be handled.
47 * Gets called once for EACH file imported
49 void ImportLNotes(const QString& file);
53 #endif