supl/locationomasuplprotocolhandler/protocolhandlerver1/inc/epos_momapacketsendobserver.h
changeset 0 667063e416a2
equal deleted inserted replaced
-1:000000000000 0:667063e416a2
       
     1 /*
       
     2 * Copyright (c) 2002-2005 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:   Class for doing asynchronous service.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef M_MOMAPACKETSENDOBSERVER_H
       
    21 #define M_MOMAPACKETSENDOBSERVER_H
       
    22 
       
    23 #include <e32base.h>
       
    24 
       
    25 //Observer class for Packet Send
       
    26 class MPacketSendObserver
       
    27 {
       
    28 	public:	
       
    29 		/**
       
    30 		* SendComplete Method.
       
    31 		* @since S60 v3.1u
       
    32 		* @param aErrorCode, error code,if some error occurs during asynchronous operation
       
    33 		* @return None
       
    34 		*/ 
       
    35 		virtual void SendComplete(TInt aErrorCode) = 0;
       
    36 
       
    37 		/**
       
    38 		* ConnectionComplete Method.
       
    39 		* @since S60 v3.1u
       
    40 		* @param aErrorCode, error code,if some error occurs during asynchronous operation
       
    41 		* @return None
       
    42 		*/ 
       
    43 		virtual void ConnectionComplete(TInt aErrorCode) = 0;   
       
    44 		
       
    45 };
       
    46 
       
    47 #endif //M_MOMAPACKETSENDOBSERVER_H