|
a/src/internfile/internfile.h |
|
b/src/internfile/internfile.h |
|
... |
|
... |
26 |
using std::string;
|
26 |
using std::string;
|
27 |
using std::vector;
|
27 |
using std::vector;
|
28 |
using std::map;
|
28 |
using std::map;
|
29 |
using std::set;
|
29 |
using std::set;
|
30 |
|
30 |
|
31 |
#include "Filter.h"
|
31 |
#include "mimehandler.h"
|
32 |
#include "uncomp.h"
|
32 |
#include "uncomp.h"
|
33 |
#include "pathut.h"
|
33 |
#include "pathut.h"
|
34 |
|
34 |
|
35 |
class RclConfig;
|
35 |
class RclConfig;
|
36 |
namespace Rcl {
|
36 |
namespace Rcl {
|
|
... |
|
... |
260 |
map<string, string> m_XAttrsFields;
|
260 |
map<string, string> m_XAttrsFields;
|
261 |
#endif // RCL_USE_XATTR
|
261 |
#endif // RCL_USE_XATTR
|
262 |
|
262 |
|
263 |
// Filter stack, path to the current document from which we're
|
263 |
// Filter stack, path to the current document from which we're
|
264 |
// fetching subdocs
|
264 |
// fetching subdocs
|
265 |
vector<Dijon::Filter*> m_handlers;
|
265 |
vector<RecollFilter*> m_handlers;
|
266 |
// Temporary files used for decoding the current stack
|
266 |
// Temporary files used for decoding the current stack
|
267 |
bool m_tmpflgs[MAXHANDLERS];
|
267 |
bool m_tmpflgs[MAXHANDLERS];
|
268 |
vector<TempFile> m_tempfiles;
|
268 |
vector<TempFile> m_tempfiles;
|
269 |
// Error data if any
|
269 |
// Error data if any
|
270 |
string m_reason;
|
270 |
string m_reason;
|