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 "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.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"
29 // FORWARD DECLARATIONS
30 class CSIPAuthorizationHeaderParams;
37 * A base class for SIP Authorization- and Proxy-Authorization-headers
40 class CSIPAuthorizationHeaderBase : public CSIPAuthHeaderBase
42 public: // Constructors and destructor
47 IMPORT_C virtual ~CSIPAuthorizationHeaderBase();
49 protected: // Constructors
51 CSIPAuthorizationHeaderBase();
53 void ConstructL(const CSIPAuthorizationHeaderBase& aHeader);
55 protected: // From CSIPAuthHeaderBase
57 const CSIPParamContainerBase& Params() const;
58 CSIPParamContainerBase& Params();
60 protected: // New functions
62 void DoInternalizeValueL(RReadStream& aReadStream);
66 CSIPAuthorizationHeaderParams* iParams;
69 #endif // CSIPAUTHORIZATIONHEADERBASE_H