Switch to unified view

a b/src/internfile/mh_mail.h
1
#ifndef _MAIL_H_INCLUDED_
2
#define _MAIL_H_INCLUDED_
3
/* @(#$Id: mh_mail.h,v 1.1 2005-03-25 09:40:27 dockes Exp $  (C) 2004 J.F.Dockes */
4
#include "mimehandler.h"
5
6
// Code to turn a mail folder file into internal documents
7
class MimeHandlerMail : public MimeHandler {
8
    RclConfig *conf;
9
    MimeHandler::Status processone(const string &fn, Rcl::Doc &docout);
10
 public:
11
    MimeHandlerMail() : conf(0) {}
12
    virtual MimeHandler::Status 
13
  worker(RclConfig *conf, const string &fn, 
14
         const string &mtype, Rcl::Doc &docout, string& ipath);
15
};
16
#endif /* _MAIL_H_INCLUDED_ */