voipplugins/sipconnectionprovider/inc/scpdisconnecting.h
branchRCL_3
changeset 22 d38647835c2e
parent 0 a4daefaec16c
equal deleted inserted replaced
21:f742655b05bf 22:d38647835c2e
       
     1 /*
       
     2 * Copyright (c) 2002-2007 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 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef T_SCPDISCONNECTING_H
       
    20 #define T_SCPDISCONNECTING_H
       
    21 
       
    22 #include <e32base.h>
       
    23 
       
    24 #include "scpsubservicestate.h"
       
    25 
       
    26 /**
       
    27 *  Disconnecting state
       
    28 *
       
    29 *  @lib sipconnectionprovider.dll
       
    30 */
       
    31 class TScpDisconnecting : public TScpSubServiceState
       
    32     {
       
    33 public:
       
    34     /**
       
    35      * C++ default constructor.
       
    36      */
       
    37     TScpDisconnecting();
       
    38 
       
    39     /**
       
    40      * Returns state
       
    41      * @return State
       
    42      */
       
    43     TCCHSubserviceState State() const;
       
    44 
       
    45     /**
       
    46      * Disable
       
    47      * @param aSubService Sub service
       
    48      */
       
    49     TInt Disable( CScpSubService& aSubService ) const;
       
    50 
       
    51     /**
       
    52      * Service disconnected
       
    53      * @param aSubService Sub service
       
    54      */
       
    55     void ServiceDisconnected( CScpSubService& aSubService ) const;
       
    56 
       
    57     /**
       
    58      * Network lost
       
    59      * @param aSubService Sub service
       
    60      */
       
    61     void NetworkLost( CScpSubService& aSubService ) const;
       
    62     };
       
    63 
       
    64 #endif      // T_SCPDISCONNECTING_H   
       
    65             
       
    66 // End of File