equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: Interface of the Security Module UI DLL |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef SECMODUI_H |
|
20 #define SECMODUI_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32base.h> |
|
24 |
|
25 // CONSTANTS |
|
26 const TUid KSecModUIViewMainId = {22}; |
|
27 const TUid KSecModUIViewCodeId = {23}; |
|
28 const TUid KSecModUIViewAccessId = {45}; |
|
29 const TUid KSecModUIViewSignatureId = {46}; |
|
30 |
|
31 |
|
32 // CLASS DECLARATION |
|
33 |
|
34 /** |
|
35 * Interface of the Security Module UI. |
|
36 * Creates and deletes instance of the Security Module UI. |
|
37 * |
|
38 * @lib SecModUI.lib |
|
39 * @since Series 60 3.0 |
|
40 */ |
|
41 class MSecModUI |
|
42 { |
|
43 public: // Constructors and destructor |
|
44 |
|
45 /** |
|
46 * Creates an instance of a subclass of MSecModUI. |
|
47 * |
|
48 * @return An object that implements MSecModUI destructor. |
|
49 */ |
|
50 IMPORT_C static MSecModUI* CreateL(); |
|
51 |
|
52 /** |
|
53 * Destructor. |
|
54 */ |
|
55 virtual ~MSecModUI() {}; |
|
56 |
|
57 }; |
|
58 |
|
59 #endif // SECMODUI_H |
|
60 |
|
61 // End of File |