equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007-2007 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: Observer interface for notifying CSCSettingsUi for |
|
15 * : completed service events from model. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef M_CSCSETTINGSUIMODELOBSERVER_H |
|
21 #define M_CSCSETTINGSUIMODELOBSERVER_H |
|
22 |
|
23 #include "cscengcchhandler.h" |
|
24 |
|
25 /** |
|
26 * MCSCSettingsUiModelObserver class |
|
27 * |
|
28 * Declarition of MCSCSettingsUiModelObserver. |
|
29 * |
|
30 * @lib CSCSettingsUi.lib |
|
31 * @since S60 v3.2 |
|
32 */ |
|
33 class MCSCSettingsUiModelObserver |
|
34 { |
|
35 public: |
|
36 |
|
37 /** |
|
38 * Called when softkeys need to be changed. |
|
39 * |
|
40 * @since S60 v3.2 |
|
41 */ |
|
42 virtual void UpdateSoftkeys() const = 0; |
|
43 |
|
44 }; |
|
45 |
|
46 #endif // M_CSCSETTINGSUIMODELOBSERVER_H |