Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // 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
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #if !defined(__MSVRCPT_H__)
21 //**********************************
23 //**********************************
25 // Base class for multiple recipients
28 class CMsvRecipient : public CBase
29 /** Base class for information relating to a message recipient.
35 /** Message sending status for a recipient.
41 /** Message is not sent. */
43 /** Message has been sent. */
45 /** Message sending failed. */
47 IMPORT_C virtual void InternalizeL(RReadStream& aStream);
48 IMPORT_C virtual void ExternalizeL(RWriteStream& aStream) const;
49 inline TRecipientStatus Status() const;
50 inline void SetStatus(TRecipientStatus aStatus);
51 inline TInt Error() const;
52 inline void SetError(TInt aError);
53 inline const TTime& Time() const;
55 inline TInt Retries() const;
56 inline void IncreaseRetries();
57 inline void ResetRetries();
59 IMPORT_C CMsvRecipient();
61 TRecipientStatus iStatus;
67 #include <msvrcpt.inl>