equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 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 "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: This class provides runtime support for push plugins. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MIDPRUNTIMEPUSHSUPPORT_H |
|
20 #define MIDPRUNTIMEPUSHSUPPORT_H |
|
21 |
|
22 #include "javaosheaders.h" |
|
23 |
|
24 namespace java // codescanner::namespace |
|
25 { |
|
26 |
|
27 namespace runtime // codescanner::namespace |
|
28 { |
|
29 |
|
30 OS_NONSHARABLE_CLASS(MidpStarterPushSupport) |
|
31 { |
|
32 public: |
|
33 |
|
34 //API |
|
35 virtual void |
|
36 startMidletRequestFromPush(const std::wstring& pushAdditionalInfo) = 0; |
|
37 virtual void closeRuntimeRequestFromPush() = 0; |
|
38 |
|
39 protected: |
|
40 //Destructor |
|
41 virtual ~MidpStarterPushSupport() {} |
|
42 |
|
43 }; |
|
44 } //end namespace runtime |
|
45 } //end namespace java |
|
46 |
|
47 #endif // MIDPRUNTIMEPUSHSUPPORT_H |
|
48 |