Update contrib.
2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "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.
15 * FORM Cursor Navigation header file holding policy interface class.
18 #ifndef CLEANUPUTIL_INL
19 #define CLEANUPUTIL_INL
21 #include "cleanuputil.h"
24 class CleanupResetAndDestroy
27 inline static void PushL(T& aRef);
29 static void ResetAndDestroy(TAny *aPtr);
33 inline void CleanupResetAndDestroy<T>::PushL(T& aRef)
35 CleanupStack::PushL(TCleanupItem(&ResetAndDestroy,&aRef));
39 void CleanupResetAndDestroy<T>::ResetAndDestroy(TAny *aPtr)
41 static_cast<T*>(aPtr)->ResetAndDestroy();
45 inline void CleanupResetAndDestroyPushL(T& aRef)
47 CleanupResetAndDestroy<T>::PushL(aRef);