phonebookui/Phonebook2/remotecontactlookup/contactactionservice/inc/mfsccontactactionserviceobserver.h
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: Declaration of interface MFscContactActionServiceObserver. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_FSCCONTACTACTIONSERVICE_H |
|
20 #define M_FSCCONTACTACTIONSERVICE_H |
|
21 |
|
22 /** |
|
23 * Contact action service observer. |
|
24 * Defines an interface for contact action service observer. |
|
25 * |
|
26 * @since S60 3.1 |
|
27 */ |
|
28 class MFscContactActionServiceObserver |
|
29 { |
|
30 |
|
31 public: |
|
32 |
|
33 /** |
|
34 * Called when QueryActionsL method is complete. |
|
35 */ |
|
36 virtual void QueryActionsComplete() = 0; |
|
37 |
|
38 /** |
|
39 * Called when QueryActionsL method failed. |
|
40 * |
|
41 * @param aError An error code of the failure. |
|
42 */ |
|
43 virtual void QueryActionsFailed( TInt aError ) = 0; |
|
44 |
|
45 /** |
|
46 * Called when ExecuteL method is complete. |
|
47 */ |
|
48 virtual void ExecuteComplete() = 0; |
|
49 |
|
50 /** |
|
51 * Called when ExecuteL method failed. |
|
52 * |
|
53 * @param aError An error code of the failure. |
|
54 */ |
|
55 virtual void ExecuteFailed( TInt aError ) = 0; |
|
56 |
|
57 public: |
|
58 |
|
59 /** |
|
60 * Destructor. |
|
61 */ |
|
62 virtual ~MFscContactActionServiceObserver() {} |
|
63 |
|
64 }; |
|
65 |
|
66 #endif // M_FSCCONTACTACTIONSERVICE_H |