equal
deleted
inserted
replaced
|
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __LOADAMASTART_H__ |
|
17 #define __LOADAMASTART_H__ |
|
18 |
|
19 #include <ssmloadamastart.h> |
|
20 |
|
21 class CAmaStart; |
|
22 |
|
23 /** |
|
24 Class to start After Market Applications (AMA). |
|
25 |
|
26 @see CAmaStart |
|
27 |
|
28 @internalTechnology |
|
29 @released |
|
30 */ |
|
31 NONSHARABLE_CLASS (CLoadAmaStart) : public CSsmLoadAmaStart |
|
32 { |
|
33 public: |
|
34 IMPORT_C static CLoadAmaStart* CreateL(); |
|
35 |
|
36 // from CSsmLoadAmaStart |
|
37 void StartL(const TUid aDscId); |
|
38 void Start(const TUid aDscId, TRequestStatus& aRequestStatus); |
|
39 void StartCancel(); |
|
40 |
|
41 ~CLoadAmaStart(); |
|
42 |
|
43 private: |
|
44 void ConstructL(); |
|
45 CLoadAmaStart(); |
|
46 |
|
47 private: |
|
48 CAmaStart* iAmaStart; |
|
49 }; |
|
50 |
|
51 #endif // __LOADAMASTART_H__ |