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: Abstract base class for WV engine service APIs. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef M_simpleowncallback_H |
|
21 #define M_simpleowncallback_H |
|
22 |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32base.h> |
|
26 |
|
27 class MSimpleEngineRequest; |
|
28 |
|
29 |
|
30 /** |
|
31 * Abstarct API for SIMPLE engine core and SIMPLE SIP LIB communication. |
|
32 * |
|
33 * @lib simpleengine |
|
34 * @since S60 v3.2 |
|
35 */ |
|
36 class MSimpleOwnCallback |
|
37 { |
|
38 public: |
|
39 |
|
40 /** |
|
41 * Complete the open client request |
|
42 * @since S60 3.2 |
|
43 * @param aOpId operation id |
|
44 * @param aStatus result status |
|
45 * @param aReq client request |
|
46 */ |
|
47 virtual void Complete( TInt aOpId, TInt aStatus, |
|
48 MSimpleEngineRequest& aReq ) = 0; |
|
49 |
|
50 }; |
|
51 |
|
52 #endif |
|
53 |
|
54 // End of File |