equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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: The MClkAlarmInfoObserver class for changes in alarm information. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __CLK_ALARMINFO_OBSERVER_H__ |
|
19 #define __CLK_ALARMINFO_OBSERVER_H__ |
|
20 |
|
21 // System includes |
|
22 |
|
23 // User includes |
|
24 |
|
25 // Class declaration |
|
26 /** |
|
27 * @class MClkAlarmInfoObserver |
|
28 * @brief The interface observer class. Need to be implemented by the entity which requires |
|
29 * the alarm info entered by the user in the alarm editor. |
|
30 * @dll clock.exe |
|
31 */ |
|
32 class MClkAlarmInfoObserver |
|
33 { |
|
34 public: // Pure virtual functions |
|
35 |
|
36 /** |
|
37 * @brief This has to be implemented by derived class, so that the alarm information |
|
38 * is provided by the alarm editor. |
|
39 * @param aAlarmInfo The cause for notification. |
|
40 */ |
|
41 virtual void SetAlarmInformation( SClkAlarmInfo aAlarmInfo, TAlarmId aAlarmId ) = 0; |
|
42 }; |
|
43 |
|
44 #endif // __CLK_ALARMINFO_OBSERVER_H__ |
|
45 |
|
46 // End of file |