ncdengine/inc/ncdcreateaccesspointoperationobserver.h
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 2007-2008 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 definition
       
    15 *
       
    16 */
       
    17 	
       
    18 
       
    19 #ifndef M_NCDCREATEACCESSPOINTOPERATIONOBSERVER_H
       
    20 #define M_NCDCREATEACCESSPOINTOPERATIONOBSERVER_H
       
    21 
       
    22 #include <e32cmn.h>
       
    23 
       
    24 class MNcdCreateAccessPointOperation;
       
    25 
       
    26 /**
       
    27  *  Observer interface for accesspoint creation operation
       
    28  *
       
    29  * 
       
    30  */
       
    31 class MNcdCreateAccessPointOperationObserver
       
    32     {
       
    33     
       
    34 public:
       
    35 
       
    36     /**
       
    37      * Called when an operation has been completed.
       
    38      *
       
    39      * 
       
    40      * @param aOperation The operation that sent the event.
       
    41      * @param aError Error code for operation completion.
       
    42      *               KErrNone for successful completion, otherwise a system
       
    43      *               wide error code.
       
    44      */
       
    45     virtual void OperationComplete( 
       
    46         MNcdCreateAccessPointOperation& aOperation,
       
    47         TInt aError ) = 0;
       
    48     
       
    49     };
       
    50     
       
    51 #endif //  M_NCDCREATEACCESSPOINTOPERATIONOBSERVER_H