equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
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". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Utility definitions to push pointer arrays in cleanup stack |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_APPMNGR2CLEANUPUTILS_H |
|
20 #define C_APPMNGR2CLEANUPUTILS_H |
|
21 |
|
22 template <class T> |
|
23 class CleanupResetAndDestroy |
|
24 { |
|
25 public: |
|
26 inline static void PushL( T& aRef ); |
|
27 private: |
|
28 static void ResetAndDestroy( TAny *aPtr ); |
|
29 }; |
|
30 |
|
31 template <class T> |
|
32 inline void CleanupResetAndDestroyPushL( T& aRef ); |
|
33 |
|
34 #include "appmngr2cleanuputils.inl" |
|
35 |
|
36 #endif // C_APPMNGR2CLEANUPUTILS_H |