equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: MWakeUpEventObserver defines interface that is used |
|
15 * when reporting wake-up events. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef MCCHWAKEUPEVENTOBSERVER_H |
|
21 #define MCCHWAKEUPEVENTOBSERVER_H |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 // FORWARD DECLARATIONS |
|
26 |
|
27 // CLASS DECLARATION |
|
28 /** |
|
29 * MCchWakeUpEventObserver |
|
30 * |
|
31 * @lib cchserver |
|
32 * @since 3.2 |
|
33 */ |
|
34 |
|
35 class MCchWakeUpEventObserver |
|
36 { |
|
37 public: |
|
38 |
|
39 /** |
|
40 * Called when some requested event has occured |
|
41 */ |
|
42 virtual void WakeUp( ) = 0; |
|
43 |
|
44 private: |
|
45 |
|
46 |
|
47 }; |
|
48 |
|
49 #endif // MCCHWAKEUPEVENTOBSERVER_H |
|
50 |
|
51 // End of File |