Update contrib.
1 // Copyright (c) 2007-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 __WSMEMMGR_H__
17 #define __WSMEMMGR_H__
21 class CWsMemoryManager: public CBase, private RAllocator
24 static CWsMemoryManager * NewLC();
28 void DisableReserve();
31 static CWsMemoryManager * Static();
37 // implementing RAllocator
38 TAny* Alloc(TInt aSize);
39 void Free(TAny* aPtr);
40 TAny* ReAlloc(TAny* aPtr, TInt aSize, TInt aMode);
41 TInt AllocLen(const TAny* aCell) const;
44 TInt AllocSize(TInt& aTotalAllocSize) const;
45 TInt Available(TInt& aBiggestBlock) const;
46 TInt DebugFunction(TInt aFunc, TAny* a1, TAny* a2);
50 static CWsMemoryManager * iStatic;
55 TBool iReserveEnabled;
60 #endif //__WSMEMMGR_H__