equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008-2009 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CNTGLOBAL_H |
|
20 #define CNTGLOBAL_H |
|
21 |
|
22 #include <QtGlobal> |
|
23 |
|
24 #ifdef PBK_UNIT_TEST |
|
25 #define QTPBK_EXPORT |
|
26 #else |
|
27 #ifdef BUILD_QTPBK |
|
28 #define QTPBK_EXPORT Q_DECL_EXPORT |
|
29 #else |
|
30 #define QTPBK_EXPORT Q_DECL_IMPORT |
|
31 #endif |
|
32 #endif |
|
33 |
|
34 |
|
35 // Format: qtcontacts:<managerid>:<key>=<value>&<key>=<value> |
|
36 const QString SYMBIAN_BACKEND = "qtcontacts:symbian:"; |
|
37 const QString SIM_BACKEND = "qtcontacts:symbiansim:"; |
|
38 const QString SIM_BACKEND_ADN = "qtcontacts:symbiansim:store=ADN"; |
|
39 const QString SIM_BACKEND_SDN = "qtcontacts:symbiansim:store=SDN"; |
|
40 |
|
41 |
|
42 #endif // CNTGLOBAL_H |