|
a/src/internfile/internfile.h |
|
b/src/internfile/internfile.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 _INTERNFILE_H_INCLUDED_
|
17 |
#ifndef _INTERNFILE_H_INCLUDED_
|
18 |
#define _INTERNFILE_H_INCLUDED_
|
18 |
#define _INTERNFILE_H_INCLUDED_
|
19 |
// The class changes according to RCL_USE_XATTR
|
|
|
20 |
#include "autoconfig.h"
|
19 |
#include "autoconfig.h"
|
21 |
|
20 |
|
22 |
#include <string>
|
21 |
#include <string>
|
23 |
#include <vector>
|
22 |
#include <vector>
|
24 |
#include <map>
|
23 |
#include <map>
|
|
... |
|
... |
250 |
TempFile m_imgtmp; // Possible reference to an image temp file
|
249 |
TempFile m_imgtmp; // Possible reference to an image temp file
|
251 |
string m_targetMType;
|
250 |
string m_targetMType;
|
252 |
string m_reachedMType; // target or text/plain
|
251 |
string m_reachedMType; // target or text/plain
|
253 |
string m_tfile;
|
252 |
string m_tfile;
|
254 |
bool m_ok; // Set after construction if ok
|
253 |
bool m_ok; // Set after construction if ok
|
255 |
#ifdef RCL_USE_XATTR
|
|
|
256 |
// Fields found in file extended attributes. This is kept here,
|
254 |
// Fields found in file extended attributes. This is kept here,
|
257 |
// not in the file-level handler because we are only interested in
|
255 |
// not in the file-level handler because we are only interested in
|
258 |
// the top-level file, not any temp file necessitated by
|
256 |
// the top-level file, not any temp file necessitated by
|
259 |
// processing the internal doc hierarchy.
|
257 |
// processing the internal doc hierarchy.
|
260 |
map<string, string> m_XAttrsFields;
|
258 |
map<string, string> m_XAttrsFields;
|
261 |
#endif // RCL_USE_XATTR
|
|
|
262 |
// Fields gathered by executing configured external commands
|
259 |
// Fields gathered by executing configured external commands
|
263 |
map<string, string> m_cmdFields;
|
260 |
map<string, string> m_cmdFields;
|
264 |
|
261 |
|
265 |
// Filter stack, path to the current document from which we're
|
262 |
// Filter stack, path to the current document from which we're
|
266 |
// fetching subdocs
|
263 |
// fetching subdocs
|