phoneclientserver/phoneclient/Inc/UssdWrapper/MPhCltUssdNoteControllerCallBack.h
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
    25 
    25 
    26 // CLASS DECLARATION
    26 // CLASS DECLARATION
    27 
    27 
    28 /**
    28 /**
    29 *  Abstract interface for handling the notify events from note controller.
    29 *  Abstract interface for handling the notify events from note controller.
    30 *  User derives his class from this and implements GlobalWaitNoteHidden().
    30 *  User derives his class from this and implements GlobalWaitNoteDismissedL().
    31 *
    31 *
    32 *  @lib phoneclient.lib
    32 *  @lib phoneclient.lib
    33 *  @since 9.1
    33 *  @since 9.1
    34 */
    34 */
    35 
    35 
    37     {
    37     {
    38     
    38     
    39     public: // New functions
    39     public: // New functions
    40 
    40 
    41         /**
    41         /**
    42         * Called when global wait note is hidden, to background.
    42         * Called when global wait note is dismissed.
    43         * 
    43         * 
    44         * @param aError Error code.
    44         * @param aError Error code.
    45         */    
    45         */    
    46         virtual void GlobalWaitNoteHidden() = 0;
    46         virtual void GlobalWaitNoteDismissedL( const TInt aError ) = 0;
    47     };
    47     };
    48 
    48 
    49 
    49 
    50 #endif //MPHCLTUSSDNOTECONTROLLERCALLBACK_H
    50 #endif //MPHCLTUSSDNOTECONTROLLERCALLBACK_H
    51 
    51