equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2010 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: Profiles model private |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef PROFILESMODEL_P_H |
|
19 #define PROFILESMODEL_P_H |
|
20 |
|
21 // Forward declarations |
|
22 class MProfileEngineExtended; |
|
23 class QString; |
|
24 |
|
25 // Class declaration |
|
26 class ProfilesModelPrivate |
|
27 { |
|
28 public: |
|
29 static ProfilesModelPrivate *NewL(); |
|
30 ~ProfilesModelPrivate(); |
|
31 int activeProfileId(); |
|
32 int activateProfile(int profileId); |
|
33 QString activeProfileName(); |
|
34 |
|
35 private: |
|
36 ProfilesModelPrivate(); |
|
37 void ConstructL(); |
|
38 |
|
39 private: |
|
40 MProfileEngineExtended *mEngine; |
|
41 }; |
|
42 |
|
43 #endif //PROFILESMODEL_P_H |