23 lines
407 B
Text
23 lines
407 B
Text
|
/**
|
||
|
* @file
|
||
|
* @brief Representation of a general cache for search trees
|
||
|
* @author Andreas Nuechter. Institute of Computer Science, University of Osnabrueck, Germany.
|
||
|
*/
|
||
|
|
||
|
#ifndef __SEARCHCACHE_H__
|
||
|
#define __SEARCHCACHE_H__
|
||
|
|
||
|
/**
|
||
|
* @brief The general Cache Item
|
||
|
*
|
||
|
* This class contains a general cache item
|
||
|
*/
|
||
|
class SearchTreeCacheItem
|
||
|
{
|
||
|
public:
|
||
|
virtual ~SearchTreeCacheItem() {};
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|