profilesapplication/Profiles/ProfileApp/SettingsViewInc/MProfileExternalSettingsObserver.h
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: Interface for observing changes in the settings outside |
|
15 * Profiles itself. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef MPROFILEEXTERNALSETTINGSOBSERVER_H |
|
22 #define MPROFILEEXTERNALSETTINGSOBSERVER_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32std.h> |
|
26 |
|
27 // CLASS DECLARATION |
|
28 |
|
29 /** |
|
30 * Interface for observing changes in the settings outside Profiles itself. |
|
31 * |
|
32 * @lib ProfileSettingsView.dll |
|
33 * @since 3.1 |
|
34 */ |
|
35 class MProfileExternalSettingsObserver |
|
36 { |
|
37 |
|
38 public: // New functions |
|
39 |
|
40 /** |
|
41 * Notifies that the external settings have changed somehow. |
|
42 * @since 3.1 |
|
43 */ |
|
44 virtual void HandleExternalSettingsChangedL() = 0; |
|
45 |
|
46 }; |
|
47 |
|
48 #endif // MPROFILEEXTERNALSETTINGSOBSERVER_H |
|
49 |
|
50 // End of File |
|
51 |
|
52 |