Switch to unified view

a/src/internfile/Filter.h b/src/internfile/Filter.h
...
...
15
 */
15
 */
16
16
17
#ifndef _DIJON_FILTER_H
17
#ifndef _DIJON_FILTER_H
18
#define _DIJON_FILTER_H
18
#define _DIJON_FILTER_H
19
19
20
#include <stdint.h>
20
#include <string>
21
#include <string>
21
#include <set>
22
#include <set>
22
#include <map>
23
#include <map>
23
24
24
class RclConfig;
25
class RclConfig;
...
...
138
        surrounding code quite often has a better idea about it
139
        surrounding code quite often has a better idea about it
139
        (having created a temp file, etc.), and this saves more
140
        (having created a temp file, etc.), and this saves more
140
        stat() calls The value is stored inside metaData, docsize
141
        stat() calls The value is stored inside metaData, docsize
141
        key
142
        key
142
    */
143
    */
143
    virtual void set_docsize(off_t size) = 0;
144
    virtual void set_docsize(int64_t size) = 0;
144
145
145
    // Going from one nested document to the next.
146
    // Going from one nested document to the next.
146
147
147
    /** Returns true if there are nested documents left to extract.
148
    /** Returns true if there are nested documents left to extract.
148
     * Returns false if the end of the parent document was reached
149
     * Returns false if the end of the parent document was reached