Fix confusing checkbox text due to class reuse
[kdepim.git] / kmailcvt / filter_mailapp.hxx
blobb976324f4fd895bdabe4903b05ba6772d16dc707
1 /***************************************************************************
2 filter_mailapp.hxx - OS X Mail App import
3 -------------------
4 copyright : (C) 2004 by Chris Howells
5 email : howells@kde.org
7 Derived from code by:
8 copyright : (C) 2003 by Laurence Anderson
9 email : l.d.anderson@warwick.ac.uk
11 ***************************************************************************/
13 #ifndef FILTER_MAILAPP_HXX
14 #define FILTER_MAILAPP_HXX
16 #include "filters.hxx"
18 /**
19 *imports mbox archives messages into KMail
20 *@author Chris Howells
23 class FilterMailApp : public Filter
25 public:
26 FilterMailApp();
27 ~FilterMailApp();
29 void import(FilterInfo *info);
31 private:
32 QStringList mMboxFiles;
33 void traverseDirectory(const QString &);
36 #endif