convergedcallengine/serviceselector/inc/cssservicehandlergsm.h
changeset 51 12bc758d6a02
parent 48 78df25012fda
child 53 25b8d29b7c59
equal deleted inserted replaced
48:78df25012fda 51:12bc758d6a02
     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:  This file contains the header file of the
       
    15 *              : CSsServiceHandlerGsm class.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef CSSSERVICEHANDLERGSM_H
       
    22 #define CSSSERVICEHANDLERGSM_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include "cservicehandler.h"
       
    26 #include <e32base.h>
       
    27 
       
    28 // CONSTANTS
       
    29 //None
       
    30 
       
    31 // MACROS
       
    32 //None
       
    33 
       
    34 // DATA TYPES
       
    35 //None.
       
    36 
       
    37 // FUNCTION PROTOTYPES
       
    38 //None
       
    39 
       
    40 // FORWARD DECLARATIONS
       
    41 //None
       
    42 
       
    43 // CLASS DECLARATION
       
    44 
       
    45 /**
       
    46 *  Gsm service handler class for service selector
       
    47 *
       
    48 *  @lib ServiceSelector.lib
       
    49 *  @since Series60_5.0
       
    50 */
       
    51 NONSHARABLE_CLASS( CSsServiceHandlerGsm )
       
    52         : public CServiceHandler
       
    53     {
       
    54     public:  // Constructors and destructor
       
    55       
       
    56         /**
       
    57         * Two-phased constructor.
       
    58         */
       
    59         static CSsServiceHandlerGsm* NewL();
       
    60         
       
    61         /**
       
    62         * Destructor.
       
    63         */
       
    64         virtual ~CSsServiceHandlerGsm();
       
    65 
       
    66     public: // New functions
       
    67        
       
    68 
       
    69     protected:  // New functions
       
    70 
       
    71         /**
       
    72         * From CServiceHandler
       
    73         */     
       
    74         void ExecuteServiceSelectionL( 
       
    75             CConvergedServiceSelector::TSsResult& aResult,
       
    76             CConvergedServiceSelector::TSsCallType aCallType, 
       
    77             TUint aServiceId,
       
    78             TBool aSendKey,
       
    79             const TDesC& aString = KNullDesC );
       
    80             
       
    81     private:
       
    82 
       
    83         /**
       
    84         * C++ default constructor.
       
    85         */
       
    86         CSsServiceHandlerGsm();
       
    87         
       
    88 
       
    89     private:    // Data
       
    90 
       
    91     };
       
    92 
       
    93 #endif      // CSSSERVICEHANDLERGSM_H
       
    94             
       
    95 // End of File