trunk/branch integration: documentation

This commit is contained in:
Marian Krivos
2011-08-23 06:47:06 +00:00
parent b318ae67d6
commit 4cea48e712
5 changed files with 56 additions and 50 deletions

View File

@@ -1,7 +1,7 @@
//
// ExpireCache.h
//
// $Id: //poco/svn/Foundation/include/Poco/ExpireCache.h#2 $
// $Id: //poco/1.4/Foundation/include/Poco/ExpireCache.h#1 $
//
// Library: Foundation
// Package: Cache
@@ -36,8 +36,8 @@
//
#ifndef Foundation_ExpireCache_INCLUDED
#define Foundation_ExpireCache_INCLUDED
#ifndef Foundation_ExpireCache_INCLUDED
#define Foundation_ExpireCache_INCLUDED
#include "Poco/AbstractCache.h"
@@ -53,7 +53,7 @@ template <
class TMutex = FastMutex,
class TEventMutex = FastMutex
>
class ExpireCache: public AbstractCache<TKey, TValue, ExpireStrategy<TKey, TValue>, TMutex, TEventMutex >
class ExpireCache: public AbstractCache<TKey, TValue, ExpireStrategy<TKey, TValue>, TMutex, TEventMutex>
/// An ExpireCache caches entries for a fixed time period (per default 10 minutes).
/// Entries expire independently of the access pattern, i.e. after a constant time.
/// If you require your objects to expire after they were not accessed for a given time
@@ -84,4 +84,4 @@ private:
} // namespace Poco
#endif
#endif // Foundation_ExpireCache_INCLUDED