Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 // Copyright (c) 2001-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.
17 inline THTTPEvent::THTTPEvent(TInt aStatus, TUint aUID)
18 : iStatus(aStatus), iUID(aUID), iIsSessionEventFlag(EFalse)
22 inline THTTPEvent::THTTPEvent(TStandardEvent aStatus)
23 : iStatus(aStatus), iUID(KHTTPUid), iIsSessionEventFlag(EFalse)
27 inline THTTPEvent::THTTPEvent(TTransactionEvent aStatus)
28 : iStatus(aStatus), iUID(KHTTPUid), iIsSessionEventFlag(EFalse)
32 inline THTTPEvent& THTTPEvent::operator=(TStandardEvent aStatus)
39 inline THTTPEvent& THTTPEvent::operator=(TTransactionEvent aStatus)
46 inline TBool THTTPEvent::operator==(THTTPEvent aThat) const
48 return (iStatus == aThat.iStatus && iUID == aThat.iUID);
51 inline TBool THTTPEvent::operator!=(THTTPEvent aThat) const
53 return !(*this == aThat);
56 inline TBool THTTPEvent::operator==(TStandardEvent aStatus) const
58 return (iStatus == aStatus && iUID == KHTTPUid);
61 inline TBool THTTPEvent::operator!=(TStandardEvent aStatus) const
63 return !(*this == aStatus);
66 inline TBool THTTPEvent::operator==(TTransactionEvent aStatus) const
68 return (iStatus == aStatus && iUID == KHTTPUid);
71 inline TBool THTTPEvent::operator!=(TTransactionEvent aStatus) const
73 return !(*this == aStatus);
76 inline TBool THTTPEvent::IsSessionEvent() const
78 return iIsSessionEventFlag;
81 inline THTTPSessionEvent::THTTPSessionEvent(TInt aStatus, TUint aUID)
82 : THTTPEvent(aStatus, aUID)
84 iIsSessionEventFlag = ETrue;
87 inline THTTPSessionEvent::THTTPSessionEvent(TStandardEvent aStatus)
90 iIsSessionEventFlag = ETrue;
93 inline THTTPSessionEvent::THTTPSessionEvent(TSessionEvent aStatus)
96 iIsSessionEventFlag = ETrue;
99 inline THTTPSessionEvent& THTTPSessionEvent::operator=(TSessionEvent aStatus)
106 inline TBool THTTPSessionEvent::operator==(TSessionEvent aStatus) const
108 return (iStatus == aStatus && iUID == KHTTPUid);
111 inline TBool THTTPSessionEvent::operator!=(TSessionEvent aStatus) const
113 return !(*this == aStatus);