|
1 /* |
|
2 * Copyright (c) 2006-2008 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: CNcdRequestGenerator declaration |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef NCDREQUESTGENERATOR_H |
|
20 #define NCDREQUESTGENERATOR_H |
|
21 |
|
22 #include <e32std.h> |
|
23 #include <e32base.h> |
|
24 |
|
25 class CNcdRequestConfiguration; |
|
26 class CNcdRequestBrowseSearch; |
|
27 class CNcdRequestPurchase; |
|
28 class CNcdRequestManageSubscriptions; |
|
29 class CNcdRequestInstallation; |
|
30 |
|
31 class NcdRequestGenerator : public CBase |
|
32 { |
|
33 |
|
34 public: |
|
35 |
|
36 static CNcdRequestConfiguration* CreateConfigurationRequestL(); |
|
37 static CNcdRequestConfiguration* CreateConfigurationRequestLC(); |
|
38 |
|
39 static CNcdRequestBrowseSearch* CreateBrowseRequestL(); |
|
40 static CNcdRequestBrowseSearch* CreateBrowseRequestLC(); |
|
41 |
|
42 static CNcdRequestBrowseSearch* CreateSearchRequestL(); |
|
43 static CNcdRequestBrowseSearch* CreateSearchRequestLC(); |
|
44 |
|
45 static CNcdRequestPurchase* CreatePurchaseRequestL(); |
|
46 static CNcdRequestPurchase* CreatePurchaseRequestLC(); |
|
47 |
|
48 static CNcdRequestManageSubscriptions* CreateManageSubscriptionsRequestL(); |
|
49 static CNcdRequestManageSubscriptions* CreateManageSubscriptionsRequestLC(); |
|
50 |
|
51 static CNcdRequestInstallation* CreateInstallationReportRequestL(); |
|
52 static CNcdRequestInstallation* CreateInstallationReportRequestLC(); |
|
53 |
|
54 |
|
55 }; |
|
56 |
|
57 #endif //NCDREQUESTGENERATOR_H |