author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Wed, 18 Aug 2010 09:49:03 +0300 | |
changeset 41 | 3a6b55c6390c |
parent 28 | 075425b8d9a4 |
child 37 | 451b2e1545b2 |
permissions | -rw-r--r-- |
24 | 1 |
/* |
2 |
* Copyright (c) 2009 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: |
|
15 |
* |
|
16 |
*/ |
|
17 |
||
18 |
#ifndef RADIOPRESETSTORAGE_P_H_ |
|
19 |
#define RADIOPRESETSTORAGE_P_H_ |
|
20 |
||
21 |
// System includes |
|
22 |
#include <QScopedPointer> |
|
23 |
||
24 |
// User includes |
|
25 |
||
26 |
// Forward declarations |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
27 |
class CPresetUtility; |
24 | 28 |
|
29 |
class RadioPresetStoragePrivate |
|
30 |
{ |
|
31 |
public: |
|
32 |
||
33 |
RadioPresetStoragePrivate(); |
|
34 |
~RadioPresetStoragePrivate(); |
|
35 |
||
36 |
bool init(); |
|
37 |
||
38 |
public: // data |
|
39 |
||
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
40 |
QScopedPointer<CPresetUtility> mPresetUtility; |
24 | 41 |
|
42 |
}; |
|
43 |
||
44 |
#endif // RADIOPRESETSTORAGE_P_H_ |