phonebookui/Phonebook/BCardEng/inc/CBCardParserParamArray.h
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2002 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: 
       
    15 *       Class for storing pointers to CParserParam objects. The reason for
       
    16 *       this class is the usage of cleanupstack; destructor deletes the
       
    17 *       instances of the pointers.     
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 #ifndef __CBCARDPARSERPARAMARRAY_H__
       
    23 #define __CBCARDPARSERPARAMARRAY_H__
       
    24 
       
    25 //  INCLUDES
       
    26 #include    <e32base.h>
       
    27 
       
    28 // FORWARD DECLARATIONS
       
    29 class CParserParam;
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 NONSHARABLE_CLASS(CBCardParserParamArray) : public CArrayPtrFlat<CParserParam> 
       
    34 	{
       
    35     public: // constructor and destructor
       
    36         
       
    37         /**
       
    38          * Constructor.
       
    39 		 * @param aGranurality array granularity
       
    40          */
       
    41         CBCardParserParamArray(TInt aGranurality);
       
    42         /**
       
    43          * Destructor.
       
    44          */
       
    45         ~CBCardParserParamArray();
       
    46     };
       
    47 
       
    48 #endif // __CBCARDPARSERPARAMARRAY_H__
       
    49             
       
    50 // End of File