Changeset 7
- Timestamp:
- 1999-09-13 17:09:59 (9 years ago)
- Files:
-
- 1 modified
-
trunk/xapian-core/common/database.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xapian-core/common/database.h
r3 r7 25 25 public: 26 26 PostListIterator(); 27 ~PostListIterator();28 27 void open(termid); // Throws RangeError if termid invalid 29 28 docid get_docid(); // Gets current docid … … 38 37 public: 39 38 TermListIterator(); 40 ~TermListIterator();41 39 void open(docid); // Throws InvalidIDException if docid invalid 42 40 termid get_termid(); // Gets current termid … … 44 42 void skip_to(termid); // Moves to next termid >= specified termid 45 43 bool are_more(); // True if there are more termid's 44 void close(); 46 45 }; 47 46
