|
1 /* |
|
2 * Copyright (c) 2002-2004 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 "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". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: ?Description |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef LEAVEDOMAINRESP_H |
|
21 #define LEAVEDOMAINRESP_H |
|
22 |
|
23 // INCLUDES |
|
24 #include "RoapMessage.h" |
|
25 |
|
26 namespace Roap |
|
27 { |
|
28 |
|
29 // CONSTANTS |
|
30 //const ?type ?constant_var = ?constant; |
|
31 |
|
32 // MACROS |
|
33 //#define ?macro ?macro_def |
|
34 |
|
35 // DATA TYPES |
|
36 //enum ?declaration |
|
37 //typedef ?declaration |
|
38 //extern ?data_type; |
|
39 |
|
40 // FUNCTION PROTOTYPES |
|
41 //?type ?function_name(?arg_list); |
|
42 |
|
43 // FORWARD DECLARATIONS |
|
44 //class ?FORWARD_CLASSNAME; |
|
45 |
|
46 // CLASS DECLARATION |
|
47 |
|
48 /** |
|
49 * ?one_line_short_description. |
|
50 * ?other_description_lines |
|
51 * |
|
52 * @lib ?library |
|
53 * @since Series ?XX ?SeriesXX_version |
|
54 */ |
|
55 class CLeaveDomainResp : public CRoapMessage |
|
56 { |
|
57 public: // Constructors and destructor |
|
58 |
|
59 /** |
|
60 * Two-phased constructor. |
|
61 */ |
|
62 static CLeaveDomainResp* NewL(); |
|
63 |
|
64 /** |
|
65 * Destructor. |
|
66 */ |
|
67 virtual ~CLeaveDomainResp(); |
|
68 |
|
69 public: // New functions |
|
70 |
|
71 /** |
|
72 * ?member_description. |
|
73 * @since Series ?XX ?SeriesXX_version |
|
74 * @param ?arg1 ?description |
|
75 * @return ?description |
|
76 */ |
|
77 //?type ?member_function( ?type ?arg1 ); |
|
78 |
|
79 public: // Functions from base classes |
|
80 |
|
81 /** |
|
82 * From ?base_class ?member_description. |
|
83 * @since Series ?XX ?SeriesXX_version |
|
84 * @param ?arg1 ?description |
|
85 * @return ?description |
|
86 */ |
|
87 //?type ?member_function( ?type ?arg1 ); |
|
88 |
|
89 protected: // New functions |
|
90 |
|
91 /** |
|
92 * ?member_description. |
|
93 * @since Series ?XX ?SeriesXX_version |
|
94 * @param ?arg1 ?description |
|
95 * @return ?description |
|
96 */ |
|
97 //?type ?member_function( ?type ?arg1 ); |
|
98 |
|
99 protected: // Functions from base classes |
|
100 |
|
101 /** |
|
102 * From ?base_class ?member_description |
|
103 */ |
|
104 //?type ?member_function(); |
|
105 |
|
106 private: |
|
107 |
|
108 /** |
|
109 * C++ default constructor. |
|
110 */ |
|
111 CLeaveDomainResp(); |
|
112 |
|
113 /** |
|
114 * By default Symbian 2nd phase constructor is private. |
|
115 */ |
|
116 void ConstructL(); |
|
117 |
|
118 // Prohibit copy constructor if not deriving from CBase. |
|
119 // CLeaveDomainResp( const CLeaveDomainResp& ); |
|
120 // Prohibit assigment operator if not deriving from CBase. |
|
121 // CLeaveDomainResp& operator=( const CLeaveDomainResp& ); |
|
122 |
|
123 public: // Data |
|
124 // ?one_line_short_description_of_data |
|
125 TRoapStatus iStatus; |
|
126 HBufC8* iDomainId; |
|
127 HBufC8* iDeviceNonce; |
|
128 HBufC8* iErrorUrl; |
|
129 |
|
130 protected: // Data |
|
131 // ?one_line_short_description_of_data |
|
132 //?data_declaration; |
|
133 |
|
134 private: // Data |
|
135 // ?one_line_short_description_of_data |
|
136 //?data_declaration; |
|
137 |
|
138 // Reserved pointer for future extension |
|
139 //TAny* iReserved; |
|
140 |
|
141 public: // Friend classes |
|
142 //?friend_class_declaration; |
|
143 protected: // Friend classes |
|
144 //?friend_class_declaration; |
|
145 private: // Friend classes |
|
146 //?friend_class_declaration; |
|
147 |
|
148 }; |
|
149 } |
|
150 |
|
151 #endif // LEAVEDOMAINRESP_H |
|
152 |
|
153 // End of File |