First public contribution.
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #ifndef CLEANUPUTILS_INL
20 #define CLEANUPUTILS_INL
22 #include <scs/cleanuputils.h>
25 class CleanupResetAndDestroy
28 inline static void PushL(T& aRef);
30 static void ResetAndDestroy(TAny *aPtr);
34 inline void CleanupResetAndDestroy<T>::PushL(T& aRef)
36 CleanupStack::PushL(TCleanupItem(&ResetAndDestroy,&aRef));
40 void CleanupResetAndDestroy<T>::ResetAndDestroy(TAny *aPtr)
42 static_cast<T*>(aPtr)->ResetAndDestroy();
46 inline void CleanupResetAndDestroyPushL(T& aRef)
48 CleanupResetAndDestroy<T>::PushL(aRef);
52 inline void DeleteObjectZ(T*& aPtr)
58 inline HBufC8* ConvertBufferTo8bitL(const TDesC& aBuffer)
60 HBufC8* buf8 = HBufC8::NewLC(aBuffer.Length());
61 TPtr8 bufPtr8(buf8->Des());
62 bufPtr8.Copy(aBuffer);
63 CleanupStack::Pop(buf8);
67 inline HBufC* ConvertBufferTo16bitL(const TDesC8& aBuffer)
69 HBufC* buf = HBufC::NewLC(aBuffer.Length());
70 TPtr bufPtr(buf->Des());
72 CleanupStack::Pop(buf);
76 #endif /* CLEANUPUTILS_INL */