1 /* |
|
2 * Copyright (c) 2003 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: This file contains the header file of the MCbsDbSettingsObserver class. |
|
15 * Virtual class defining an interface for a settings observer. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef MCBSDBSETTINGSOBSERVER_H |
|
22 #define MCBSDBSETTINGSOBSERVER_H |
|
23 |
|
24 // CLASS DECLARATION |
|
25 |
|
26 /** |
|
27 * This class defines the interface for settings observers. |
|
28 */ |
|
29 class MCbsDbSettingsObserver |
|
30 { |
|
31 public: // New functions |
|
32 /** |
|
33 * The method is used to indicate that the topic detection |
|
34 * status has been changed. |
|
35 */ |
|
36 virtual void TopicDetectionStatusChangedIndL() = 0; |
|
37 |
|
38 /** |
|
39 * The method is used to indicate that the reception status |
|
40 * has been changed. |
|
41 */ |
|
42 virtual void ReceptionStatusChangedIndL() = 0; |
|
43 |
|
44 /** |
|
45 * The method is used to indicate that the preferred languages |
|
46 * has been changed. |
|
47 */ |
|
48 virtual void LanguagesChangedIndL() = 0; |
|
49 |
|
50 /** |
|
51 * The method is used to indicate that the limited reception |
|
52 * status has been changed. |
|
53 */ |
|
54 virtual void LimitedReceptionStatusChangedIndL() = 0; |
|
55 |
|
56 /** |
|
57 * The method is used to indicate that the clean up interval |
|
58 * of read messages has been changed. |
|
59 */ |
|
60 virtual void CleanupTimeChangedIndL() = 0; |
|
61 }; |
|
62 |
|
63 #endif // MCBSDBSETTINGSOBSERVER_H |
|
64 |
|
65 // End of File |
|