equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004-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: An interface for static contact store properties |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MVPBKCONTACTSTOREPROPERTIES2_H |
|
20 #define MVPBKCONTACTSTOREPROPERTIES2_H |
|
21 |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32cmn.h> |
|
25 |
|
26 // CLASS DECLARATIONS |
|
27 |
|
28 /** |
|
29 * This class is an extension to MVPbkContactStoreProperties. |
|
30 * See documentation of MVPbkContactStoreProperties from header MVPbkContactStoreProperties.h |
|
31 * |
|
32 * You can access this extension by calling MVPbkContactStoreProperties->ContactStorePropertiesExtension() |
|
33 */ |
|
34 class MVPbkContactStoreProperties2 |
|
35 { |
|
36 protected: |
|
37 |
|
38 /** |
|
39 * This extension cannot be destroyed through this interface. |
|
40 */ |
|
41 virtual ~MVPbkContactStoreProperties2() {}; |
|
42 |
|
43 public: |
|
44 |
|
45 /** |
|
46 * Returns true if the store supports own contact. |
|
47 * |
|
48 * @return ETrue if the store supports own contact. |
|
49 */ |
|
50 virtual TBool SupportsOwnContact() const =0; |
|
51 }; |
|
52 |
|
53 |
|
54 #endif // MVPBKCONTACTSTOREPROPERTIES_H |
|
55 |
|
56 //End of file |