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: MIAUpdaterCancelObserver interface |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef IAUPDATER_CANCEL_OBSERVER_H |
|
21 #define IAUPDATER_CANCEL_OBSERVER_H |
|
22 |
|
23 /** |
|
24 * MIAUpdaterCancelObserver interface is used to observe when user cancel issued |
|
25 */ |
|
26 class MIAUpdaterCancelObserver |
|
27 { |
|
28 |
|
29 public: |
|
30 |
|
31 /** |
|
32 * Called when global progress note cancelled by an user |
|
33 */ |
|
34 virtual void UserCancel() = 0; |
|
35 |
|
36 |
|
37 /** |
|
38 * Called when global progress note closed by end key |
|
39 */ |
|
40 virtual void UserExit() = 0; |
|
41 |
|
42 |
|
43 }; |
|
44 |
|
45 #endif // IAUPDATER_CANCEL_OBSERVER_H |