equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-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: Auxiliary contact properties. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CVPBKSTORECONTACTPROPERTIES_H |
|
20 #define CVPBKSTORECONTACTPROPERTIES_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32std.h> |
|
24 |
|
25 // FORWARD DECLARATIONS |
|
26 |
|
27 // CLASS DECLARATIONS |
|
28 |
|
29 /** |
|
30 * Auxiliary contact properties. |
|
31 * |
|
32 * @lib VPbkEng.lib |
|
33 */ |
|
34 class MVPbkStoreContactProperties |
|
35 { |
|
36 public: // Constructors and Destructor |
|
37 virtual ~MVPbkStoreContactProperties() {} |
|
38 |
|
39 public: // interface |
|
40 /** |
|
41 * Returns the contact's last modified date/time. |
|
42 * |
|
43 * @return modification date/time |
|
44 * @exception KErrNotSupported If the contact's store doesn't support |
|
45 * last modified property |
|
46 */ |
|
47 virtual TTime LastModifiedL() const =0; |
|
48 |
|
49 /** |
|
50 * Returns the contact's guid. |
|
51 * |
|
52 * @return guid |
|
53 * @exception KErrNotSupported If the contact's store doesn't support |
|
54 * contact guid property |
|
55 */ |
|
56 virtual TPtrC GuidL() const =0; |
|
57 |
|
58 }; |
|
59 |
|
60 #endif // CVPBKSTORECONTACTPROPERTIES_H |
|
61 |
|
62 // End of file |