natfw/natfwsocketmediaconnwrapper/inc/natfwsocketsenderobserver.h
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     1 /*
       
     2 * Copyright (c) 2006-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
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef M_SOCKET_SENDER_OBSERVER_H
       
    22 #define M_SOCKET_SENDER_OBSERVER_H
       
    23 
       
    24 #include <e32def.h>
       
    25 
       
    26 /**
       
    27  *  Observer
       
    28  *
       
    29  *  Indicates actions to SocketMediaConnWrapper
       
    30  *
       
    31  *  @lib socketmediaconnwrapper.dll
       
    32  *  @since S60 v3.2
       
    33  */
       
    34 class MNATFWSocketSenderObserver
       
    35     {
       
    36 
       
    37 public:
       
    38     
       
    39     /**
       
    40      * Indicates when sender is completed.
       
    41      *
       
    42      * @since S60 v3.2
       
    43      * @param aError system-wide error code
       
    44      * @return void
       
    45      */
       
    46     virtual void SendingCompleted( TInt aError ) = 0;
       
    47      
       
    48     };
       
    49 
       
    50 
       
    51 #endif // M_SOCKET_SENDER_OBSERVER_H