phoneengine/PhoneCntFinder/ContactService/inc/mphcntservicerequestparam.h
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Abstract base class for service request param.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MPHCNTSERVICEREQUESTPARAM_H
       
    20 #define MPHCNTSERVICEREQUESTPARAM_H
       
    21 
       
    22 #include <e32std.h>
       
    23 #include <AiwCommon.hrh>
       
    24 
       
    25 class CAiwGenericParamList;
       
    26 
       
    27 /**
       
    28  *  Abstract base class for service request param
       
    29  *
       
    30  *  @lib PhoneCntFinder
       
    31  *  @since S60 v3.1
       
    32  */
       
    33 NONSHARABLE_CLASS( MPhCntServiceRequestParam )
       
    34     {
       
    35 public:
       
    36     
       
    37     virtual ~MPhCntServiceRequestParam() {};
       
    38     
       
    39     /**
       
    40      * Gives the AIW command, that this parameter represents.
       
    41      * 
       
    42      * @since S60 v3,1
       
    43      * @return AIW command.
       
    44      */
       
    45     virtual TAiwServiceCommands Command() const = 0;
       
    46 
       
    47     /**
       
    48      * Gives the AIW InParamList
       
    49      * 
       
    50      * @since S60 v3,1
       
    51      * @return AIW param list..
       
    52      */
       
    53     virtual const CAiwGenericParamList& InParamList() const = 0;
       
    54 
       
    55     
       
    56     };
       
    57 
       
    58 
       
    59 #endif // MPHCNTSERVICEREQUESTPARAM_H