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: Helper class for CParserParam array |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CPIMVCARDPARSERPARAMARRAY_H |
|
20 #define CPIMVCARDPARSERPARAMARRAY_H |
|
21 |
|
22 // EXTERNAL INCLUDES |
|
23 #include <e32base.h> |
|
24 |
|
25 // FORWARD DECLARATIONS |
|
26 class CParserParam; |
|
27 |
|
28 // CLASS DECLARATION |
|
29 /** |
|
30 * This class is a wrapper for the CparserParam pointer array |
|
31 * and helps to handle CParserParam array object in low |
|
32 * memory situations |
|
33 * |
|
34 * @since S60 v3.1 |
|
35 */ |
|
36 NONSHARABLE_CLASS(CPIMVCardParserParamArray) : public CArrayPtrFlat< CParserParam> |
|
37 { |
|
38 public: |
|
39 |
|
40 /** |
|
41 * C++ Constructor. |
|
42 * Just generates an array object of this class |
|
43 * |
|
44 * @param aGranurality array granularity |
|
45 */ |
|
46 CPIMVCardParserParamArray(TInt aGranularity); |
|
47 |
|
48 /** |
|
49 * Destructor. |
|
50 */ |
|
51 ~CPIMVCardParserParamArray(); |
|
52 }; |
|
53 |
|
54 #endif // CPIMVCARDPARSERPARAMARRAY_H |
|
55 // End of File |