cellular/servicerequest/inc/mservicerequestobserver.h
changeset 51 12bc758d6a02
parent 48 78df25012fda
child 53 25b8d29b7c59
equal deleted inserted replaced
48:78df25012fda 51:12bc758d6a02
     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:  Observer interface for service request
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MSERVICEREQUESTOBSERVER_H
       
    21 #define MSERVICEREQUESTOBSERVER_H
       
    22 
       
    23 // CLASS DECLARATION
       
    24 
       
    25 /**
       
    26 *  Observer interface for service request
       
    27 *
       
    28 *  @lib ServiceRequest.lib
       
    29 *  @since 1.2
       
    30 */
       
    31 class MServiceRequestObserver
       
    32     {
       
    33     public: // New functions
       
    34         
       
    35         /**
       
    36         * Called when user cancel the service request.
       
    37         * @since 1.2
       
    38         * @param aCancelledWithEscape ETrue: cancalled with esc key. 
       
    39         *                             EFalse: cancelled with softkey (normal).
       
    40         */
       
    41         virtual void MServiceRequestNoteCancelledL( 
       
    42             TBool aCancelledWithEscape ) = 0;
       
    43     };
       
    44 
       
    45 #endif      // MSERVICEREQUESTOBSERVER_H   
       
    46             
       
    47 // End of File