diff options
Diffstat (limited to 'goodies/source/graphic/grfmgr2.cxx')
-rw-r--r-- | goodies/source/graphic/grfmgr2.cxx | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/goodies/source/graphic/grfmgr2.cxx b/goodies/source/graphic/grfmgr2.cxx index 511c3191299a..82b09311c865 100644 --- a/goodies/source/graphic/grfmgr2.cxx +++ b/goodies/source/graphic/grfmgr2.cxx @@ -2,9 +2,9 @@ * * $RCSfile: grfmgr2.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: ka $ $Date: 2000-11-24 09:35:47 $ + * last change: $Author: ka $ $Date: 2001-05-08 09:09:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -142,6 +142,20 @@ ULONG GraphicManager::GetFreeCacheSize() const // ----------------------------------------------------------------------------- +void GraphicManager::SetCacheTimeout( ULONG nTimeoutSeconds ) +{ + mpCache->SetCacheTimeout( nTimeoutSeconds ); +} + +// ----------------------------------------------------------------------------- + +ULONG GraphicManager::GetCacheTimeout() const +{ + return mpCache->GetCacheTimeout(); +} + +// ----------------------------------------------------------------------------- + void GraphicManager::ClearCache() { mpCache->ClearDisplayCache(); |