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: Observer class definition |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __MSENGINEOBSERVER_H__ |
|
20 #define __MSENGINEOBSERVER_H__ |
|
21 |
|
22 // INCLUDE FILES |
|
23 #include <e32base.h> |
|
24 #include "cmcommon.h" |
|
25 |
|
26 /** |
|
27 * File sharing observer definition |
|
28 * |
|
29 * @lib msengine.lib |
|
30 * |
|
31 * @since S60 5.1 |
|
32 */ |
|
33 class MMSEngineObserver |
|
34 { |
|
35 public: |
|
36 /** |
|
37 * Function informs when process is ready |
|
38 * |
|
39 * @since S60 5.1 |
|
40 * @param aService, completed service |
|
41 * @param aError, error code |
|
42 * @return None |
|
43 */ |
|
44 virtual void ReadyL( TCmService aService, TInt aError ) = 0; |
|
45 }; |
|
46 |
|
47 #endif //__MSENGINEOBSERVER_H__ |
|
48 |
|
49 // End of File |