phoneclientserver/callui/inc/cauiengine/cauidialresultobserver.h
changeset 51 12bc758d6a02
parent 48 78df25012fda
child 53 25b8d29b7c59
equal deleted inserted replaced
48:78df25012fda 51:12bc758d6a02
     1 /*
       
     2 * Copyright (c) 2004 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 CCaUiEngApi DialL function results.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef MCAUIDIALRESULTOBSERVER_H
       
    21 #define MCAUIDIALRESULTOBSERVER_H
       
    22 
       
    23 // CLASS DECLARATION
       
    24 
       
    25 /**
       
    26 *  Defines the interface for the observers of the CCaUiEngApi DialL function.
       
    27 *
       
    28 *  @lib CaUiEngine.lib
       
    29 *  @since 2.6
       
    30 */
       
    31 class MCaUiDialResultObserver
       
    32     {          
       
    33     public:  // New functions   
       
    34         
       
    35         /**
       
    36         * It is called whenever dial request is completed.
       
    37         *
       
    38         * @param aStatus It is the status of the operation.
       
    39         *                KErrNone if successful.
       
    40         *                < 0 means Symbian OS error code.
       
    41         */       
       
    42         virtual void HandleDialResultL( const TInt aStatus ) = 0;
       
    43         
       
    44     };
       
    45 
       
    46 #endif      // MCAUIDIALRESULTOBSERVER_H
       
    47             
       
    48 // End of File