convergedconnectionhandler/cchclientapi/inc/mcchuinoteresultobserver.h
branchRCL_3
changeset 21 f742655b05bf
parent 20 65a3ef1d5bd0
child 22 d38647835c2e
equal deleted inserted replaced
20:65a3ef1d5bd0 21:f742655b05bf
     1 /*
       
     2 * Copyright (c) 2008-2009 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:  Internal note result observer definition
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef M_CCHUINOTERESULTOBSERVER_H
       
    20 #define M_CCHUINOTERESULTOBSERVER_H
       
    21 
       
    22 #include <e32base.h>
       
    23 
       
    24 #include "cchuicommon.hrh"
       
    25 
       
    26 /**
       
    27  * CCH UI note result observer.
       
    28  *
       
    29  * @code
       
    30  *  inherit in header:
       
    31  *  class CMyClass : public CBase, public MCchUiObserver
       
    32  * @endcode
       
    33  *
       
    34  * @lib cchui.lib
       
    35  * @since S60 5.0
       
    36  */
       
    37 NONSHARABLE_CLASS( MCchUiNoteResultObserver )
       
    38     {
       
    39 public:
       
    40 
       
    41     /**
       
    42      * Gets called when certain dialog has completed.
       
    43      *
       
    44      * @since S60 5.0
       
    45      * @param aCompleteCode Complete code.
       
    46      * @param aResultParams Result parameters of the completed dialog.
       
    47      */
       
    48     virtual void DialogCompletedL( 
       
    49         TInt aCompleteCode, 
       
    50         TCCHUiNotifierParams aResultParams ) = 0;
       
    51     };
       
    52 
       
    53 
       
    54 #endif // M_CCHUINOTERESULTOBSERVER_H