equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-2007 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: Phonebook 2 memory entry default attribute |
|
15 * : process observer interface. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef MPBK2DEFAULTATTRIBUTEPROCESSOBSERVER_H |
|
21 #define MPBK2DEFAULTATTRIBUTEPROCESSOBSERVER_H |
|
22 |
|
23 // CLASS DECLARATION |
|
24 |
|
25 /** |
|
26 * Phonebook 2 memory entry default attribute process observer interface. |
|
27 */ |
|
28 class MPbk2DefaultAttributeProcessObserver |
|
29 { |
|
30 public: // Interface |
|
31 |
|
32 /** |
|
33 * Notifies attribute process completed succesfully. |
|
34 */ |
|
35 virtual void AttributeProcessCompleted() = 0; |
|
36 |
|
37 /** |
|
38 * Notifies attribute process failed. |
|
39 * |
|
40 * @param aErrorCode Error code. |
|
41 */ |
|
42 virtual void AttributeProcessFailed( |
|
43 TInt aErrorCode ) = 0; |
|
44 |
|
45 protected: // Disabled functions |
|
46 ~MPbk2DefaultAttributeProcessObserver() |
|
47 {} |
|
48 }; |
|
49 |
|
50 #endif // MPBK2DEFAULTATTRIBUTEPROCESSOBSERVER_H |
|
51 |
|
52 // End of File |