diff -r 000000000000 -r 307788aac0a8 realtimenetprots/sipfw/SIP/TransactionUser/inc/SendStatus.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/realtimenetprots/sipfw/SIP/TransactionUser/inc/SendStatus.h Tue Feb 02 01:03:15 2010 +0200 @@ -0,0 +1,84 @@ +/* +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* Name : SendStatus.h +* Part of : TransactionUser +* Version : SIP/4.0 +* +*/ + + + + +/** + @internalComponent +*/ + +#ifndef SENDSTATUS_H +#define SENDSTATUS_H + +// INCLUDES +#include + + +// CLASS DECLARATION +class MSendStatus + { +public: + virtual ~MSendStatus() {} + + /** + * Send operation was successful, though an ICMP error can still occur + * after this. + * + * @pre + * @post + * + * @see + * + * @return value - + */ + virtual void SendCompleteL() = 0; + + /** + * Sending failed. + * + * @pre + * @post + * + * @see + * + * @param aError Error code received from ConnectionMgr + * @return value - + */ + virtual void SendFailedL(TInt aError) = 0; + + /** + * Leave occurred during the execution of CTransmitter::RunL() and the + * error is passed to the observed associated with the CTransmitter object. + * + * @pre + * @post + * + * @see + * + * @param aReason Leave code + * @return value - + */ + virtual void LeaveFromTransmitter(TInt aReason) = 0; + }; + +#endif // end of SENDSTATUS_H + +// End of File