accessoryservices/accessoryserver/inc/ChargerContext/ResetInactivityTimeTimerObserver.h
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008-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: Callback interface for observer of CAccSrvResetInactivityTimeTimer object. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef M_RESETINACTIVITYTIMETIMEROBSERVER_H |
|
22 #define M_RESETINACTIVITYTIMETIMEROBSERVER_H |
|
23 |
|
24 |
|
25 #include <e32def.h> |
|
26 |
|
27 |
|
28 /** |
|
29 * Callback interface for observer of CAccSrvResetInactivityTimeTimer object. |
|
30 * |
|
31 * This callback interface has to be implemented by observer class. |
|
32 * @code |
|
33 * ?good_class_usage_example(s) |
|
34 * @endcode |
|
35 * |
|
36 * @lib AccServer.exe |
|
37 * @since S60 5.1 |
|
38 */ |
|
39 NONSHARABLE_CLASS( MResetActivityTimeTimerObserver ) |
|
40 { |
|
41 |
|
42 public: |
|
43 |
|
44 /** |
|
45 * Function is called by timer watcher every time when timer elapses. |
|
46 * |
|
47 * @since S60 5.1 |
|
48 * @param none. |
|
49 * @return none |
|
50 */ |
|
51 virtual void InactivityTimerTimeout() = 0; |
|
52 |
|
53 }; |
|
54 |
|
55 |
|
56 #endif // M_RESETINACTIVITYTIMETIMEROBSERVER_H |