equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-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: Virtual Phonebook bookmark for referencing to any type of |
|
15 * item in the view. Can be used to find an item from the |
|
16 * view that was previously saved as a bookmark. |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 |
|
22 #ifndef MVPBKCONTACTBOOKMARK_H |
|
23 #define MVPBKCONTACTBOOKMARK_H |
|
24 |
|
25 // INCLUDES |
|
26 #include <e32cmn.h> |
|
27 #include <e32std.h> |
|
28 |
|
29 // CLASS DECLARATIONS |
|
30 |
|
31 /** |
|
32 * Virtual Phonebook Contact bookmark. |
|
33 * This bookmark interface can be used to reference any type |
|
34 * of item in a Virtual Phonebook view. |
|
35 */ |
|
36 class MVPbkContactBookmark |
|
37 { |
|
38 public: // destructor |
|
39 /** |
|
40 * Destructor. |
|
41 */ |
|
42 virtual ~MVPbkContactBookmark() { } |
|
43 |
|
44 /** |
|
45 * Returns an extension point for this interface or NULL. |
|
46 * @param aExtensionUid Uid of extension |
|
47 * @return Extension point or NULL |
|
48 */ |
|
49 virtual TAny* ContactBookmarkExtension( |
|
50 TUid /*aExtensionUid*/) { return NULL; } |
|
51 }; |
|
52 |
|
53 #endif // MVPBKCONTACTBOOKMARK_H |
|
54 |
|
55 // End of file |