phonebookui/Phonebook/BCardEng/src/CBCardParserParamArray.cpp
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 // INCLUDE FILES
       
    23 #include    "CBCardParserParamArray.h"
       
    24 #include    <vcard.h>
       
    25 
       
    26 
       
    27 // ==================== MEMBER FUNCTIONS ====================
       
    28 
       
    29 CBCardParserParamArray::~CBCardParserParamArray()
       
    30     {
       
    31     // Free contents of this array for leave-safety
       
    32     ResetAndDestroy();
       
    33     }
       
    34 
       
    35 CBCardParserParamArray::CBCardParserParamArray(TInt aGranurality)
       
    36     : CArrayPtrFlat<CParserParam>(aGranurality)
       
    37     {
       
    38     }
       
    39 
       
    40 //  End of File