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: Contains MNcdProvider interface |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_NCDDEBUGINFORMATION_H |
|
20 #define M_NCDDEBUGINFORMATION_H |
|
21 |
|
22 #include "catalogsbase.h" |
|
23 #include "ncdinterfaceids.h" |
|
24 |
|
25 class MNcdDebugInformation : public virtual MCatalogsBase |
|
26 { |
|
27 public: |
|
28 |
|
29 /** |
|
30 * Unique identifier for the interface, required for all MCatalogsBase interfaces. |
|
31 * |
|
32 * |
|
33 */ |
|
34 enum { KInterfaceUid = ENcdDebugInformationUid }; |
|
35 |
|
36 /** |
|
37 * Returns the client ID. |
|
38 */ |
|
39 virtual HBufC* ClientIdL() = 0; |
|
40 |
|
41 |
|
42 /** |
|
43 * Returns engine's type |
|
44 */ |
|
45 virtual HBufC* EngineTypeL() = 0; |
|
46 |
|
47 /** |
|
48 * Returns engine's version |
|
49 */ |
|
50 virtual HBufC* EngineVersionL() = 0; |
|
51 |
|
52 |
|
53 /** |
|
54 * Returns engine's provisioning |
|
55 */ |
|
56 virtual HBufC* EngineProvisioningL() = 0; |
|
57 |
|
58 |
|
59 /** |
|
60 * Returns engine's UID |
|
61 */ |
|
62 virtual HBufC* EngineUidL() = 0; |
|
63 |
|
64 }; |
|
65 |
|
66 #endif |