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: This is a connection observer class |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __M_IMPSCONNECTIONOBSERVER_H__ |
|
19 #define __M_IMPSCONNECTIONOBSERVER_H__ |
|
20 |
|
21 |
|
22 /** |
|
23 * ?one_line_short_description |
|
24 * |
|
25 * ?more_complete_description |
|
26 * |
|
27 * @lib ?library |
|
28 * @since S60 v4.0 |
|
29 */ |
|
30 class MImpsConnectionObserver |
|
31 { |
|
32 |
|
33 public: |
|
34 |
|
35 /** |
|
36 * ?description |
|
37 * |
|
38 * @since S60 ?S60_version |
|
39 * @param ?arg1 ?description |
|
40 * @param ?arg2 ?description |
|
41 * @return ?description |
|
42 */ |
|
43 virtual void NotifyOperationComplete( TInt aResult ) = 0; |
|
44 |
|
45 protected: |
|
46 |
|
47 /** |
|
48 * Protected destructor. |
|
49 * Instancies can't be destroyed via this interface. |
|
50 */ |
|
51 virtual ~MImpsConnectionObserver() {} |
|
52 |
|
53 }; |
|
54 |
|
55 |
|
56 #endif // __M_IMPSCONNECTIONOBSERVER_H__ |
|
57 |
|
58 |