Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * 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
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Name : sipauthorizationheaderbase.h
23 #ifndef CSIPAUTHORIZATIONHEADERBASE_H
24 #define CSIPAUTHORIZATIONHEADERBASE_H
27 #include "sipauthheaderbase.h"
28 #include "_sipcodecdefs.h"
30 // FORWARD DECLARATIONS
31 class CSIPAuthorizationHeaderParams;
38 * A base class for SIP Authorization- and Proxy-Authorization-headers
41 class CSIPAuthorizationHeaderBase : public CSIPAuthHeaderBase
43 public: // Constructors and destructor
48 IMPORT_C virtual ~CSIPAuthorizationHeaderBase();
50 protected: // Constructors
52 CSIPAuthorizationHeaderBase();
54 void ConstructL(const CSIPAuthorizationHeaderBase& aHeader);
56 protected: // From CSIPAuthHeaderBase
58 const CSIPParamContainerBase& Params() const;
59 CSIPParamContainerBase& Params();
61 protected: // New functions
63 void DoInternalizeValueL(RReadStream& aReadStream);
67 CSIPAuthorizationHeaderParams* iParams;
70 #endif // CSIPAUTHORIZATIONHEADERBASE_H