remotemgmt_plat/lawmo_plugin_api/inc/lawmocallbackinterface.h
branchRCL_3
changeset 24 13d7c31c74e0
equal deleted inserted replaced
23:4af31167ea77 24:13d7c31c74e0
       
     1 /*
       
     2 * Copyright (c) 2009 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:  LAWMO CallBack Interface definition
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef _MLAWMOCALLBACKINTERFACE_H__
       
    19 #define _MLAWMOCALLBACKINTERFACE_H__
       
    20 
       
    21 #include <e32base.h>
       
    22 
       
    23 class MLawmoPluginWipeObserver
       
    24 	{
       
    25 public:
       
    26 
       
    27 	/**
       
    28 	 * Called to notify the observer that the wipe call has been completed
       
    29 	 * by the Plugin at hand.
       
    30 	 * @param aSession session
       
    31 	 * @param aError   <code>KErrNone</code>, if opening the session succeeded;
       
    32 	 *                 or one of the system-wide error codes, if opening the 
       
    33 	 *                 session failed
       
    34 	 */
       
    35 	virtual void HandleWipeCompleted(TInt status)= 0;
       
    36 
       
    37     };
       
    38 
       
    39 #endif  // _MLAWMOCALLBACKINTERFACE_H__
       
    40