mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-17 03:03:23 +02:00
changes for 1.2.4
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// LRUCache.h
|
||||
//
|
||||
// $Id: //poco/1.2/Foundation/include/Poco/LRUCache.h#1 $
|
||||
// $Id: //poco/1.2/Foundation/include/Poco/LRUCache.h#3 $
|
||||
//
|
||||
// Library: Foundation
|
||||
// Package: Cache
|
||||
@@ -51,14 +51,13 @@ template <class TKey, class TValue>
|
||||
class LRUCache: public AbstractCache<TKey, TValue, LRUStrategy<TKey, TValue> >
|
||||
/// An LRUCache is the interface of all caches.
|
||||
{
|
||||
|
||||
public:
|
||||
LRUCache(long size = 1024):
|
||||
LRUCache(long size = 1024):
|
||||
AbstractCache<TKey, TValue, LRUStrategy<TKey, TValue> >(LRUStrategy<TKey, TValue>(size))
|
||||
{
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~LRUCache()
|
||||
~LRUCache()
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user