You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepim/kmailcvt/filter_mailapp.h

37 lines
899 B

/***************************************************************************
filter_mailapp.h - OS X Mail App import
-------------------
copyright : (C) 2004 by Chris Howells
email : howells@kde.org
Derived from code by:
copyright : (C) 2003 by Laurence Anderson
email : l.d.anderson@warwick.ac.uk
***************************************************************************/
#ifndef FILTER_MAILAPP_H
#define FILTER_MAILAPP_H
#include "filters.h"
/**
*imports mbox archives messages into KMail
*@author Chris Howells
*/
class FilterMailApp : public Filter
{
public:
FilterMailApp();
~FilterMailApp();
void import(FilterInfo *info);
private:
TQStringList mMboxFiles;
void traverseDirectory(FilterInfo *info, const TQString &);
};
#endif