First public contribution.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __CACHEBASE_H__
17 #define __CACHEBASE_H__
23 A cache base-class providing basic functionality for resolving a cached item.
25 NONSHARABLE_CLASS(CCacheBase): public CBase
35 virtual TInt UseL(TInt aHandle) = 0;
36 virtual const CBase* Resolve(TInt aHandle);
41 TCacheEntry(TInt aHandle)
52 RArray<TCacheEntry> iCachedItems;
55 #endif //__CACHEBASE_H__