wvuing/IMPSConnectionUI/UiInc/MCnUiWaitNoteObserver.h
branchRCL_3
changeset 13 a941bc465d9f
parent 0 094583676ce7
equal deleted inserted replaced
12:6ca72c0fe49a 13:a941bc465d9f
       
     1 /*
       
     2 * Copyright (c) 2003 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:  Waitnote observer.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __MCNUIWAITNOTEOBSERVER_H
       
    19 #define __MCNUIWAITNOTEOBSERVER_H
       
    20 
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 
       
    26 /**
       
    27  * Waitnote event observer for MCnUiUiFacade.
       
    28  * Observers waitnote cancel events.
       
    29  *
       
    30  * @since 2.1
       
    31  */
       
    32 NONSHARABLE_CLASS( MCnUiWaitNoteObserver )
       
    33     {
       
    34 public: // Handle events
       
    35 
       
    36     /**
       
    37      * Notify method for waitnote cancel events.
       
    38      * @since 2.1
       
    39      */
       
    40     virtual void HandleWaitNoteCancel() = 0;
       
    41 
       
    42 
       
    43 protected:  //Destructor
       
    44 
       
    45     /**
       
    46      * Virtual inline destructor.
       
    47      * Observer can't be destructed using this interface.
       
    48      *
       
    49      * @since 2.1
       
    50      */
       
    51     virtual ~MCnUiWaitNoteObserver() {};
       
    52 
       
    53     };
       
    54 
       
    55 #endif  //  __MCNUIWAITNOTEOBSERVER_H
       
    56 
       
    57 
       
    58 //  End of File
       
    59