1 /* |
1 /* |
2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). |
2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). |
3 * All rights reserved. |
3 * All rights reserved. |
4 * This component and the accompanying materials are made available |
4 * This component and the accompanying materials are made available |
5 * under the terms of the License "Eclipse Public License v1.0" |
5 * under the terms of "Eclipse Public License v1.0" |
6 * which accompanies this distribution, and is available |
6 * which accompanies this distribution, and is available |
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
8 * |
8 * |
9 * Initial Contributors: |
9 * Initial Contributors: |
10 * Nokia Corporation - initial contribution. |
10 * Nokia Corporation - initial contribution. |
15 * Control Panel EAP plugin information |
15 * Control Panel EAP plugin information |
16 * |
16 * |
17 */ |
17 */ |
18 |
18 |
19 /* |
19 /* |
20 * %version: 3 % |
20 * %version: 4 % |
21 */ |
21 */ |
22 |
22 |
23 #ifndef EAPQTPLUGININFO_P_H |
23 #ifndef EAPQTPLUGININFO_P_H |
24 #define EAPQTPLUGININFO_P_H |
24 #define EAPQTPLUGININFO_P_H |
25 |
25 |
|
26 // System includes |
26 #include <QString> |
27 #include <QString> |
27 #include "eapqtpluginhandle.h" |
28 #include <eapqtpluginhandle.h> |
28 |
29 |
|
30 // User includes |
|
31 |
|
32 // Forward declarations |
|
33 |
|
34 // External data types |
|
35 |
|
36 // Constants |
|
37 |
|
38 // Class declaration |
29 class EapQtPluginInfoPrivate |
39 class EapQtPluginInfoPrivate |
30 { |
40 { |
31 friend class EapQtPluginInfo; |
|
32 |
41 |
33 public: |
42 public: |
34 EapQtPluginInfoPrivate(EapQtPluginHandle mHandle, QString locId, int orderNumber); |
43 |
|
44 // Data types |
|
45 |
|
46 EapQtPluginInfoPrivate(const EapQtPluginHandle &mHandle, const QString &locId, |
|
47 const int orderNumber); |
35 ~EapQtPluginInfoPrivate(); |
48 ~EapQtPluginInfoPrivate(); |
36 |
49 |
37 private: |
50 private: |
|
51 |
38 EapQtPluginInfoPrivate(); |
52 EapQtPluginInfoPrivate(); |
39 Q_DISABLE_COPY(EapQtPluginInfoPrivate) |
53 Q_DISABLE_COPY(EapQtPluginInfoPrivate) |
|
54 |
|
55 private: // data |
|
56 |
40 EapQtPluginHandle mHandle; |
57 EapQtPluginHandle mHandle; |
41 QString mLocId; |
58 QString mLocId; |
42 int mOrderNumber; |
59 int mOrderNumber; |
|
60 |
|
61 // Friend classes |
|
62 friend class EapQtPluginInfo; |
|
63 |
43 }; |
64 }; |
44 |
65 |
45 #endif /* EAPPLUGININFO_P_H */ |
66 #endif // EAPPLUGININFO_P_H |