syncmlfw/dm/syncagent/inc/nsmldmagentobserver.h
changeset 0 b497e44ab2fc
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     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:  Pure virtual interface
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __NSMLDMAGENTOBSERVER_H
       
    20 #define __NSMLDMAGENTOBSERVER_H
       
    21 
       
    22 #include <e32std.h>
       
    23 
       
    24 
       
    25 // DS Agent observer interface
       
    26 class MNSmlDMAgentObserver
       
    27 	{
       
    28 	// Public members
       
    29 	public:
       
    30 	enum TNSmlDMAgentPhase 
       
    31 		{
       
    32 		EConnecting,
       
    33 		EProcessing,
       
    34 		ESending,
       
    35 		EDisconnecting
       
    36 		};
       
    37 	virtual TBool NotifyPhaseBeginL( TNSmlDMAgentPhase aPhase ) = 0;
       
    38 	virtual TBool NotifyPhaseEndL() = 0;
       
    39 //	virtual void NotifyDisplayAlertL( const TDesC& aData, TInt aMindt, TInt aMaxdt ) = 0;
       
    40 //	virtual TBool NotifyConfirmationAlertL( const TDesC& aData, TInt aMindt, TInt aMaxdt ) = 0;
       
    41 	};
       
    42 
       
    43 #endif // __NSMLDMAGENTOBSERVER_H