|
a/src/utils/circache.h |
|
b/src/utils/circache.h |
|
... |
|
... |
82 |
* using these.
|
82 |
* using these.
|
83 |
*/
|
83 |
*/
|
84 |
/** Back to oldest */
|
84 |
/** Back to oldest */
|
85 |
virtual bool rewind(bool& eof);
|
85 |
virtual bool rewind(bool& eof);
|
86 |
/** Get entry under cursor */
|
86 |
/** Get entry under cursor */
|
87 |
virtual bool getcurrent(string& udi, string& dic, string& data);
|
87 |
virtual bool getCurrent(string& udi, string& dic, string& data);
|
88 |
/** Get current entry dict only (ie: udi is in dict */
|
88 |
/** Get current entry udi only. Udi can be empty (erased empty), caller
|
|
|
89 |
* should call again */
|
89 |
virtual bool getcurrentdict(string& dict);
|
90 |
virtual bool getCurrentUdi(string& udi);
|
90 |
/** Skip to next. (false && !eof) -> error, (false&&eof)->EOF. */
|
91 |
/** Skip to next. (false && !eof) -> error, (false&&eof)->EOF. */
|
91 |
virtual bool next(bool& eof);
|
92 |
virtual bool next(bool& eof);
|
92 |
|
93 |
|
93 |
/* Debug. This writes the entry headers to stdout */
|
94 |
/* Debug. This writes the entry headers to stdout */
|
94 |
virtual bool dump();
|
95 |
virtual bool dump();
|