convergedcallengine/serviceselector/inc/cssconnectionhandler.h
changeset 0 ff3b6d0fd310
child 19 7d48bed6ce0c
equal deleted inserted replaced
-1:000000000000 0:ff3b6d0fd310
       
     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 *              : CSsConnectionHandler class.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef CSSCONNECTIONHANDLER_H
       
    21 #define CSSCONNECTIONHANDLER_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 #include <cch.h>
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 // None
       
    29 
       
    30 // CLASS DECLARATION
       
    31 
       
    32 /**
       
    33 *  Interface to get registration info for services.
       
    34 *
       
    35 *  @lib ServiceSelector.lib
       
    36 *  @since Series60_5.0
       
    37 */
       
    38 NONSHARABLE_CLASS( CSsConnectionHandler )
       
    39         : public CBase
       
    40     {
       
    41     public:  // Constructors and destructor
       
    42       
       
    43         /**
       
    44         * Two-phased constructor.
       
    45         */
       
    46         static CSsConnectionHandler* NewL();
       
    47         
       
    48         /**
       
    49         * Destructor.
       
    50         */
       
    51         virtual ~CSsConnectionHandler();
       
    52 
       
    53     public: // New functions
       
    54         
       
    55         /**
       
    56         * Checks is the service registered.
       
    57         * @param aServiceId     Id of the service.
       
    58         * @return   ETrue if service registered.
       
    59         */
       
    60         TBool IsVoipServiceRegistered( TUint aServiceId ) const;
       
    61 
       
    62     private:  // New functions
       
    63    
       
    64         /**
       
    65         * C++ default constructor.
       
    66         */
       
    67         CSsConnectionHandler();
       
    68         
       
    69         /**
       
    70         * Constructor, second phase. 
       
    71         */
       
    72         void ConstructL();
       
    73 
       
    74     private:    // Data
       
    75     
       
    76         // Converged Connection Handler client interface
       
    77         CCch* iCch;
       
    78 
       
    79     };
       
    80 
       
    81 #endif      // CSSCONNECTIONHANDLER_H
       
    82             
       
    83 // End of File