equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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 group event observer |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MCAGROUPEVENTOBSERVERPC_H |
|
20 #define MCAGROUPEVENTOBSERVERPC_H |
|
21 |
|
22 //INCLUDES |
|
23 #include <e32std.h> |
|
24 |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * Group Event observer interface to the UI. |
|
30 * Signalling goes from the Engine -> UI. |
|
31 * |
|
32 * @lib wvuiprocessng.lib |
|
33 * @since 3.2 |
|
34 */ |
|
35 class MCAGroupEventObserverPC |
|
36 { |
|
37 public: |
|
38 |
|
39 /** |
|
40 * Called when new group properties are received from the |
|
41 * the network. These are server initiated properties. |
|
42 */ |
|
43 virtual void HandleGroupPropertiesChanged() = 0; |
|
44 |
|
45 /** |
|
46 * Called when the group has been deleted, or forced kick out of the group. |
|
47 * @param aReason The CSP error code |
|
48 */ |
|
49 virtual void HandleGroupLeft( TInt aReason ) = 0; |
|
50 |
|
51 |
|
52 protected: |
|
53 /** |
|
54 * Destructor. |
|
55 */ |
|
56 virtual ~MCAGroupEventObserverPC() {}; |
|
57 }; |
|
58 |
|
59 #endif // MCAGROUPEVENTOBSERVERPC_H |
|
60 |
|
61 // End of File |