|
a/src/internfile/mh_exec.h |
|
b/src/internfile/mh_exec.h |
|
... |
|
... |
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 |
|
19 |
|
20 |
#include <string>
|
20 |
#include <string>
|
21 |
#include <list>
|
21 |
#include <vector>
|
22 |
using std::list;
|
22 |
using std::vector;
|
23 |
using std::string;
|
23 |
using std::string;
|
24 |
|
24 |
|
25 |
#include "mimehandler.h"
|
25 |
#include "mimehandler.h"
|
26 |
|
26 |
|
27 |
/**
|
27 |
/**
|
|
... |
|
... |
41 |
// cfgFilterOutputCharset
|
41 |
// cfgFilterOutputCharset
|
42 |
// define what I am. missingHelper is a permanent error
|
42 |
// define what I am. missingHelper is a permanent error
|
43 |
// (no use to try and execute over and over something that's not
|
43 |
// (no use to try and execute over and over something that's not
|
44 |
// here).
|
44 |
// here).
|
45 |
|
45 |
|
46 |
// Parameter list: this has been built by our creator, from config file
|
46 |
// Parameters: this has been built by our creator, from config file
|
47 |
// data. We always add the file name at the end before actual execution
|
47 |
// data. We always add the file name at the end before actual execution
|
48 |
list<string> params;
|
48 |
vector<string> params;
|
49 |
// Filter output type. The default for ext. filters is to output html,
|
49 |
// Filter output type. The default for ext. filters is to output html,
|
50 |
// but some don't, in which case the type is defined in the config.
|
50 |
// but some don't, in which case the type is defined in the config.
|
51 |
string cfgFilterOutputMtype;
|
51 |
string cfgFilterOutputMtype;
|
52 |
// Output character set if the above type is not text/html. For
|
52 |
// Output character set if the above type is not text/html. For
|
53 |
// those filters, the output charset has to be known: ie set by a command
|
53 |
// those filters, the output charset has to be known: ie set by a command
|