You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
407 B
C++

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