|
a/src/internfile/mh_exec.h |
|
b/src/internfile/mh_exec.h |
|
... |
|
... |
14 |
* Free Software Foundation, Inc.,
|
14 |
* Free Software Foundation, Inc.,
|
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
16 |
*/
|
16 |
*/
|
17 |
#ifndef _MH_EXEC_H_INCLUDED_
|
17 |
#ifndef _MH_EXEC_H_INCLUDED_
|
18 |
#define _MH_EXEC_H_INCLUDED_
|
18 |
#define _MH_EXEC_H_INCLUDED_
|
19 |
/* @(#$Id: mh_exec.h,v 1.3 2006-12-15 12:40:02 dockes Exp $ (C) 2004 J.F.Dockes */
|
19 |
/* @(#$Id: mh_exec.h,v 1.4 2007-10-25 15:50:31 dockes Exp $ (C) 2004 J.F.Dockes */
|
20 |
|
20 |
|
21 |
#include <string>
|
21 |
#include <string>
|
22 |
#include <list>
|
22 |
#include <list>
|
|
|
23 |
using std::list;
|
|
|
24 |
using std::string;
|
23 |
|
25 |
|
24 |
#include "rclconfig.h"
|
|
|
25 |
#include "rcldb.h"
|
|
|
26 |
#include "mimehandler.h"
|
26 |
#include "mimehandler.h"
|
27 |
|
27 |
|
28 |
/**
|
28 |
/**
|
29 |
Turn external document into internal one by executing an external filter.
|
29 |
Turn external document into internal one by executing an external filter.
|
30 |
The command to execute, and its parameters, come from the mimeconf file
|
30 |
The command to execute, and its parameters, come from the mimeconf file
|
31 |
*/
|
31 |
*/
|
32 |
class MimeHandlerExec : public RecollFilter {
|
32 |
class MimeHandlerExec : public RecollFilter {
|
33 |
public:
|
33 |
public:
|
34 |
std::list<std::string> params;
|
34 |
list<string> params;
|
35 |
MimeHandlerExec(const string& mt) : RecollFilter(mt) {}
|
35 |
MimeHandlerExec(const string& mt) : RecollFilter(mt) {}
|
36 |
virtual ~MimeHandlerExec() {}
|
36 |
virtual ~MimeHandlerExec() {}
|
37 |
virtual bool set_document_file(const string &file_path) {
|
37 |
virtual bool set_document_file(const string &file_path) {
|
38 |
m_fn = file_path;
|
38 |
m_fn = file_path;
|
39 |
m_havedoc = true;
|
39 |
m_havedoc = true;
|