equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2007-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: Header file for MAcpControllerObserver |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MACPCONTROLLEROBSERVER_H |
|
20 #define MACPCONTROLLEROBSERVER_H |
|
21 |
|
22 class MAcpControllerObserver |
|
23 { |
|
24 public: |
|
25 /** |
|
26 * Notifies observer about readiness of provider list. |
|
27 * |
|
28 * @since S60 v3.2 |
|
29 * @param aError System wide error code. |
|
30 */ |
|
31 virtual void NotifyProviderListReady( TInt aError ) = 0; |
|
32 |
|
33 /** |
|
34 * Notifies observer about downloading. |
|
35 * |
|
36 * @since S60 v3.2 |
|
37 * @param aError System wide error code. |
|
38 */ |
|
39 virtual void NotifyDownloadingCompleted( TInt aError ) = 0; |
|
40 |
|
41 /** |
|
42 * Notifies observer about downloading sis. |
|
43 * |
|
44 * @since S60 v5.0 |
|
45 * @param aFileName sis file name |
|
46 */ |
|
47 virtual void NotifyDownloadingSISCompleted( TDesC& aFileName ) = 0; |
|
48 |
|
49 /** |
|
50 * Notifies observer about successfully parser/provisioned content. |
|
51 * |
|
52 * @since S60 v3.2 |
|
53 */ |
|
54 virtual void NotifyProvisioningCompleted() = 0; |
|
55 |
|
56 /** |
|
57 * Notifies observer when settings have been completely saved. |
|
58 * |
|
59 * @since S60 v3.2 |
|
60 */ |
|
61 virtual void NotifySettingsSaved() = 0; |
|
62 }; |
|
63 |
|
64 #endif // MACPCONTROLLEROBSERVER_H |
|
65 |
|
66 // End of file. |
|