|
1 /* |
|
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
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". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Name : sipauthorizationheaderbase.h |
|
16 * Part of : SIP Codec |
|
17 * Version : SIP/6.0 |
|
18 * |
|
19 */ |
|
20 |
|
21 |
|
22 |
|
23 #ifndef CSIPAUTHORIZATIONHEADERBASE_H |
|
24 #define CSIPAUTHORIZATIONHEADERBASE_H |
|
25 |
|
26 // INCLUDES |
|
27 #include "sipauthheaderbase.h" |
|
28 #include "_sipcodecdefs.h" |
|
29 |
|
30 // FORWARD DECLARATIONS |
|
31 class CSIPAuthorizationHeaderParams; |
|
32 |
|
33 // CLASS DECLARATION |
|
34 /** |
|
35 * @publishedAll |
|
36 * @released |
|
37 * |
|
38 * A base class for SIP Authorization- and Proxy-Authorization-headers |
|
39 * @lib sipcodec.lib |
|
40 */ |
|
41 class CSIPAuthorizationHeaderBase : public CSIPAuthHeaderBase |
|
42 { |
|
43 public: // Constructors and destructor |
|
44 |
|
45 /** |
|
46 * Destructor. |
|
47 */ |
|
48 IMPORT_C virtual ~CSIPAuthorizationHeaderBase(); |
|
49 |
|
50 protected: // Constructors |
|
51 |
|
52 CSIPAuthorizationHeaderBase(); |
|
53 void ConstructL(); |
|
54 void ConstructL(const CSIPAuthorizationHeaderBase& aHeader); |
|
55 |
|
56 protected: // From CSIPAuthHeaderBase |
|
57 |
|
58 const CSIPParamContainerBase& Params() const; |
|
59 CSIPParamContainerBase& Params(); |
|
60 |
|
61 protected: // New functions |
|
62 |
|
63 void DoInternalizeValueL(RReadStream& aReadStream); |
|
64 |
|
65 protected: // Data |
|
66 |
|
67 CSIPAuthorizationHeaderParams* iParams; |
|
68 }; |
|
69 |
|
70 #endif // CSIPAUTHORIZATIONHEADERBASE_H |
|
71 |
|
72 // End of File |