1.1 --- a/epoc32/include/msvrcpt.inl Wed Mar 31 12:27:01 2010 +0100
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,83 +0,0 @@
1.4 -// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 -// All rights reserved.
1.6 -// This component and the accompanying materials are made available
1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 -// which accompanies this distribution, and is available
1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 -//
1.11 -// Initial Contributors:
1.12 -// Nokia Corporation - initial contribution.
1.13 -//
1.14 -// Contributors:
1.15 -//
1.16 -// Description:
1.17 -//
1.18 -
1.19 -
1.20 -inline CMsvRecipient::TRecipientStatus CMsvRecipient::Status() const
1.21 -/** Gets the message sending status for the recipient.
1.22 -
1.23 -@return Message sending status for the recipient */
1.24 - {
1.25 - return iStatus;
1.26 - }
1.27 -
1.28 -inline void CMsvRecipient::SetStatus(TRecipientStatus aStatus)
1.29 -/** Sets the message sending status for the recipient.
1.30 -
1.31 -@param aStatus Message sending status for the recipient */
1.32 - {
1.33 - iStatus=aStatus;
1.34 - }
1.35 -
1.36 -inline TInt CMsvRecipient::Error() const
1.37 -/** Gets any error code for message sending to the recipient.
1.38 -
1.39 -@return System wide error code */
1.40 - {
1.41 - return iError;
1.42 - }
1.43 -
1.44 -inline void CMsvRecipient::SetError(TInt aError)
1.45 -/** Sets any error code for message sending to the recipient.
1.46 -
1.47 -@param aError System wide error code */
1.48 - {
1.49 - iError=aError;
1.50 - }
1.51 -
1.52 -inline const TTime& CMsvRecipient::Time() const
1.53 -/** Gets the (const) time for message sending to the recipient.
1.54 -
1.55 -@return Time for message sending to the recipient */
1.56 - {
1.57 - return iTime;
1.58 - }
1.59 -
1.60 -inline TTime& CMsvRecipient::Time()
1.61 -/** Gets the (writable) time for message sending to the recipient.
1.62 -
1.63 -@return Time for message sending to the recipient */
1.64 - {
1.65 - return iTime;
1.66 - }
1.67 -
1.68 -inline TInt CMsvRecipient::Retries() const
1.69 -/** Gets the number of retries for message sending to the recipient.
1.70 -
1.71 -@return Number of retries */
1.72 - {
1.73 - return iRetries;
1.74 - }
1.75 -
1.76 -inline void CMsvRecipient::IncreaseRetries()
1.77 -/** Increments the number of retries for message sending to the recipient. */
1.78 - {
1.79 - iRetries++;
1.80 - }
1.81 -
1.82 -inline void CMsvRecipient::ResetRetries()
1.83 -/** Resets the number of retries for message sending to the recipient to zero. */
1.84 - {
1.85 - iRetries=0;
1.86 - }