open-source-search-engine/Msg40Cache.h

20 lines
316 B
C
Raw Normal View History

2013-08-03 00:12:24 +04:00
// Matt Wells, Copyright Nov 2002
// . a cache to store Msg40's (docIds/summaries)
#ifndef _MSG40CACHE_
#define _MSG40CACHE_
class Msg40Cache {
public:
// returns true if we found in cache and set "msg40", false otherwise
bool setFromCache (Msg40 *msg40 );
};
extern class Msg40Cache g_msg40Cache;
#endif