phonebookui/Phonebook/BCardEng/inc/CBCardParserProperty.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 deriving from CParserProperty to access its 
       
    16 *       protected iArrayOfParams member.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef __CBCARDPARSERPROPERTY_H__
       
    22 #define __CBCARDPARSERPROPERTY_H__
       
    23 
       
    24 //  INCLUDES
       
    25 #include <vprop.h>
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30  * Class deriving from CParserProperty to access its protected iArrayOfParams
       
    31  * member.
       
    32  */
       
    33 NONSHARABLE_CLASS(CBCardParserProperty) : 
       
    34         public CParserProperty 
       
    35 	{
       
    36     public: // Interface
       
    37         /**
       
    38          * Converts aProperty to an instance of this class.
       
    39          */
       
    40         static const CBCardParserProperty& Cast(const CParserProperty& aProperty);
       
    41 
       
    42         /**
       
    43          * Returns this property's array of parameters.
       
    44          */
       
    45         const CArrayPtr<CParserParam>* ArrayOfParams() const;
       
    46 
       
    47 	private:
       
    48 		CBCardParserProperty(); // Not implemented (just suppress warnings)
       
    49 
       
    50     };
       
    51 
       
    52 #endif // __CBCARDPARSERPROPERTY_H__
       
    53             
       
    54 // End of File