|
From: John W. <j_w...@us...> - 2004-12-06 12:38:49
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2128 Modified Files: SegmentReader.cpp Log Message: - Documented each method of the classes Norm and SegmentReader - In SegmentReader::document(const int_t n) changed lucene::document::Document* ret into lucene::document::Document& ret as FieldReader returned a Reference anyway - In void SegmentReader::segmentname(char_t* buffer,const char_t* segment, const char_t* ext, const int_t x) changed char_t* segment into char_t *Segment to prevent confusion with private variable char_t segment - Moved the code n->in.close(); delete &n->in; delete[] n->bytes; to the destructor of Norm, because that is the place where it should be. |