equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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 MIAUpdateUITimerObserver class. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef IA_UPDATE_UI_TIMER_OBSERVER_H |
|
19 #define IA_UPDATE_UI_TIMER_OBSERVER_H |
|
20 |
|
21 |
|
22 /** |
|
23 * MIAUpdateUITimerObserver |
|
24 */ |
|
25 class MIAUpdateUITimerObserver |
|
26 { |
|
27 |
|
28 public: |
|
29 |
|
30 /** |
|
31 * Called when the timer has completed its operation. |
|
32 * @param aError Error code of the operation. |
|
33 */ |
|
34 virtual void ForegroundDelayComplete( TInt aError ) = 0; |
|
35 |
|
36 /** |
|
37 * Called when the timer has completed its operation. |
|
38 * @param aError Error code of the operation. |
|
39 */ |
|
40 virtual void BackgroundDelayComplete( TInt aError ) = 0; |
|
41 |
|
42 /** |
|
43 * Called when the timer has completed its operation. |
|
44 * @param aError Error code of the operation. |
|
45 */ |
|
46 virtual void ProcessStartDelayComplete( TInt aError ) = 0; |
|
47 |
|
48 |
|
49 protected: |
|
50 |
|
51 /** |
|
52 * Protected virtual destructor to prevent unwanted |
|
53 * deletions of this interface object. |
|
54 */ |
|
55 virtual ~MIAUpdateUITimerObserver() { } |
|
56 |
|
57 }; |
|
58 |
|
59 #endif // IA_UPDATE_UI_TIMER_OBSERVER_H |