open-source-search-engine/Msg40Cache.h
2013-08-02 13:12:24 -07:00

20 lines
316 B
C++

// 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