~ubuntu-branches/ubuntu/raring/kdepim/raring-proposed

« back to all changes in this revision

Viewing changes to kmailcvt/filter_mbox.hxx

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-07 07:56:38 UTC
  • mfrom: (0.2.27)
  • Revision ID: package-import@ubuntu.com-20120607075638-0luhdq11z7sgvs4m
Tags: 4:4.8.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                          filter_mbox.hxx  -  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
 
 ***************************************************************************/
8
 
 
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
 
 ***************************************************************************/
17
 
 
18
 
#ifndef FILTER_MBOX_HXX
19
 
#define FILTER_MBOX_HXX
20
 
 
21
 
#include "filters.hxx"
22
 
 
23
 
/**
24
 
 * imports mbox archives messages into KMail
25
 
 * @author Laurence Anderson
26
 
 */
27
 
 
28
 
class FilterMBox : public Filter
29
 
{
30
 
public:
31
 
    FilterMBox();
32
 
    ~FilterMBox();
33
 
 
34
 
    void import(FilterInfo *info);
35
 
};
36
 
 
37
 
#endif