phoneclientserver/inc/mphcltextphoneobserver.h
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
     1 /*
       
     2 * Copyright (c) 2002 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:  It defines the interface for the observers of 
       
    15 *                the CPhCltExtPhoneBase.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef MPHCLTEXTPHONEOBSERVER_H   
       
    21 #define MPHCLTEXTPHONEOBSERVER_H   
       
    22 
       
    23 // CLASS DECLARATION
       
    24 
       
    25 /**
       
    26 *  Defines the interface for the observers of the CPhCltExtPhoneBase.
       
    27 *
       
    28 *  @lib phoneclient.lib
       
    29 *  @since 1.0
       
    30 */
       
    31 class MPhCltExtPhoneObserver
       
    32     {          
       
    33     public:  // New functions   
       
    34         
       
    35         /**
       
    36         * It is called whenever client's dial request is completed.
       
    37         *
       
    38         * @param aStatus It is the status of the operation.
       
    39         *                <0 means Symbian OS error code.
       
    40         */       
       
    41         virtual void HandleDialL( const TInt aStatus ) = 0;
       
    42         
       
    43     };
       
    44 
       
    45 #endif      // MPHCLTEXTPHONEOBSERVER_H   
       
    46             
       
    47 // End of File