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: Interface for getting notified for Swi events. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef HSCONTENTCONTROLSWIOBSERVER_H |
|
20 #define HSCONTENTCONTROLSWIOBSERVER_H |
|
21 |
|
22 /** |
|
23 * MHsContentControlSwiObserver |
|
24 * |
|
25 * @brief The observer of Swi operations. The derived class needs to implement |
|
26 * the functions below and will be notified by CHsContentControlSwiListener |
|
27 * |
|
28 * @see CHsContentControlSwiListener |
|
29 */ |
|
30 class MHsContentControlSwiObserver |
|
31 { |
|
32 public: |
|
33 /** |
|
34 * Notification of Swi event ( install/uninstall/restore) |
|
35 * @param aUidList list of package UID which is being processed. |
|
36 */ |
|
37 virtual void HandleSwiEvent( const RArray<TUid>& aUidList ) = 0; |
|
38 }; |
|
39 |
|
40 #endif // HSCONTENTCONTROLSWIOBSERVER_H |
|
41 |
|
42 // End of file |