SVN_SILENT made messages (.desktop file)
[kdepim.git] / mailimporter / filter_mbox.h
blob3e455d69289369ebd5f206c3ac0967668218fa23
1 /***************************************************************************
2 filter_mbox.h - mbox mail import
3 -------------------
4 begin : Sat Apr 5 2003
5 copyright : (C) 2003 by Laurence Anderson
6 email : l.d.anderson@warwick.ac.uk
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_MBOX_HXX
19 #define MAILIMPORTER_FILTER_MBOX_HXX
21 #include "filters.h"
23 /**
24 * imports mbox archives messages into KMail
25 * @author Laurence Anderson
27 namespace MailImporter {
28 class MAILIMPORTER_EXPORT FilterMBox : public Filter
30 public:
31 FilterMBox();
32 ~FilterMBox();
34 void importMails(const QStringList &filenames);
35 void import();
39 #endif