equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: CNcdRequestBrowseSearch declaration |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_NCD_REQUEST_CONFIGURATION_HH |
|
20 #define C_NCD_REQUEST_CONFIGURATION_HH |
|
21 |
|
22 #include <e32std.h> |
|
23 #include <e32base.h> |
|
24 #include "ncdrequestbase.h" |
|
25 #include "ncdprotocoltypes.h" |
|
26 #include "ncdrequestconstants.h" |
|
27 |
|
28 class CNcdRequestConfiguration : public CNcdRequestBase |
|
29 { |
|
30 |
|
31 public: |
|
32 HBufC8* CreateRequestL(); |
|
33 |
|
34 public: |
|
35 static CNcdRequestConfiguration* NewL(); |
|
36 static CNcdRequestConfiguration* NewLC(); |
|
37 |
|
38 void ConstructL(); |
|
39 |
|
40 ~CNcdRequestConfiguration(); |
|
41 |
|
42 public: |
|
43 void AddCatalogBundleRequestL(TDesC8& bundleId); |
|
44 |
|
45 protected: |
|
46 |
|
47 private: |
|
48 CNcdRequestConfiguration(); |
|
49 |
|
50 private: |
|
51 TXmlEngString iType; |
|
52 TXmlEngString iNamespaceUri; |
|
53 TXmlEngString iPrefix; |
|
54 |
|
55 CDesC8ArrayFlat* iBundles; |
|
56 |
|
57 }; |
|
58 |
|
59 #endif //C_NCD_REQUEST_CONFIGURATION_HH |
|
60 |