equal
deleted
inserted
replaced
|
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 M_RADIOAPPLICATIONSETTINGS_H |
|
19 #define M_RADIOAPPLICATIONSETTINGS_H |
|
20 |
|
21 #include <badesca.h> |
|
22 |
|
23 /** |
|
24 * MRadioApplicationSettings |
|
25 * |
|
26 * Interface for managing persistent Visual Radio application settings. |
|
27 */ |
|
28 NONSHARABLE_CLASS( MRadioApplicationSettings ) |
|
29 { |
|
30 |
|
31 public: |
|
32 |
|
33 virtual TBool IsFirstTimeStart() = 0; |
|
34 |
|
35 virtual void SetFirstTimeStartPerformed( TBool aFirstTimeStartPerformed ) = 0; |
|
36 |
|
37 virtual TInt SetUiFlags( TUint aUiFlags ) = 0; |
|
38 |
|
39 virtual TUint UiFlags() const = 0; |
|
40 |
|
41 }; |
|
42 |
|
43 #endif // M_RADIOAPPLICATIONSETTINGS_H |