realtimenetprots/sipfw/SampleApp/socketengine/Inc/SIPExWriterNotifier.h
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 
       
     2 /*
       
     3 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 * All rights reserved.
       
     5 * This component and the accompanying materials are made available
       
     6 * under the terms of "Eclipse Public License v1.0"
       
     7 * which accompanies this distribution, and is available
       
     8 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9 *
       
    10 * Initial Contributors:
       
    11 * Nokia Corporation - initial contribution.
       
    12 *
       
    13 * Contributors:
       
    14 *
       
    15 * Description:
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef __MSIPEXWRITERNOTIFIER_H
       
    22 #define __MSIPEXWRITERNOTIFIER_H
       
    23 
       
    24 // CLASS DECLARATIONS
       
    25 /**
       
    26 * Interface for notifying about socket writer events.
       
    27 */
       
    28 class MSIPExWriterNotifier
       
    29 	{
       
    30 	public:
       
    31 		
       
    32         /**
       
    33         * Called when the message has been written to the socket.
       
    34         */
       
    35         virtual void WriteDone() = 0;
       
    36 
       
    37         /**
       
    38         * Called when the error has occured in writing.
       
    39         */
       
    40         virtual void ErrorInWriting( TInt aError ) = 0;
       
    41 	};
       
    42 #endif // __MSIPEXWRITERNOTIFIER_H
       
    43 
       
    44 // End of file