securitydialogs/secuidialognotifiersrv/inc/secuidialogoperationobserver.h
changeset 61 1cc4c46c2963
equal deleted inserted replaced
56:25a3fbb5e4d3 61:1cc4c46c2963
       
     1 /*
       
     2 * Copyright (c) 2010 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 definition for CSecuiDialog operations
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef SECUIDIALOGOPERATIONOBSERVER_H
       
    19 #define SECUIDIALOGOPERATIONOBSERVER_H
       
    20 
       
    21 
       
    22 /**
       
    23  * CSecuiDialogOperations inform observer when they are complete.
       
    24  * Completed operations can be deleted safely. Deleting an incomplete
       
    25  * operation cancels the ongoing request.
       
    26  */
       
    27 class MSecuiDialogOperationObserver
       
    28     {
       
    29     public:
       
    30         virtual void OperationComplete() = 0;
       
    31     };
       
    32 
       
    33 #endif  // SECUIDIALOGOPERATIONOBSERVER_H
       
    34