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: Observer interface for getting notifes from CSPTimer |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MCSPTIMEROBSERVER_H |
|
20 #define MCSPTIMEROBSERVER_H |
|
21 |
|
22 /** |
|
23 * Observer for CSPTimer events. |
|
24 * |
|
25 */ |
|
26 class MCSPTimerObserver |
|
27 { |
|
28 |
|
29 public: |
|
30 |
|
31 /** |
|
32 * Timer request has completed. |
|
33 * |
|
34 * @since S60 v3.1 |
|
35 */ |
|
36 virtual void TimerEvent() = 0; |
|
37 |
|
38 }; |
|
39 |
|
40 |
|
41 #endif // MCSPTIMEROBSERVER_H |
|