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