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: MIAUpdateStarterObserver interface |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef IAUPDATESTARTEROBSERVER_H |
|
21 #define IAUPDATESTARTEROBSERVER_H |
|
22 |
|
23 |
|
24 /** |
|
25 * MIAUpdateStarterObserver interface is used to observe |
|
26 * when the requested operation has been completed. |
|
27 * |
|
28 */ |
|
29 class MIAUpdateStarterObserver |
|
30 { |
|
31 |
|
32 public: |
|
33 |
|
34 /** |
|
35 * Called when an outstanding request is completed |
|
36 * |
|
37 * @param aError Error code that informs the result |
|
38 * of the start operation. KErrNone if operation was |
|
39 * succesfull. |
|
40 */ |
|
41 virtual void StartExecutableCompletedL( TInt aError ) = 0; |
|
42 |
|
43 }; |
|
44 |
|
45 #endif // IAUPDATESTARTEROBSERVER_H |