williamr@4: /* williamr@4: * Copyright (c) 2004-2007 Nokia Corporation and/or its subsidiary(-ies). williamr@4: * All rights reserved. williamr@4: * This component and the accompanying materials are made available williamr@4: * under the terms of "Eclipse Public License v1.0" williamr@4: * which accompanies this distribution, and is available williamr@4: * at the URL "http://www.eclipse.org/legal/epl-v10.html". williamr@4: * williamr@4: * Initial Contributors: williamr@4: * Nokia Corporation - initial contribution. williamr@4: * williamr@4: * Contributors: williamr@4: * williamr@4: * Description: Default store URIs offered by the Virtual Phonebook williamr@4: * williamr@4: */ williamr@4: williamr@4: williamr@4: williamr@4: #ifndef VPBKCONTACTSTOREURIS_H williamr@4: #define VPBKCONTACTSTOREURIS_H williamr@4: williamr@4: // INCLUDES williamr@4: #include williamr@4: williamr@4: /** williamr@4: * Default store URIs offered by the Virtual Phonebook. williamr@4: * williamr@4: * The Virtual Phonebook doesn't offer dynamic URI configuration repository. williamr@4: * The repository of URIs is left to responsibility of a higher level component. williamr@4: * williamr@4: * @lib VPbkEng.lib williamr@4: */ williamr@4: namespace VPbkContactStoreUris williamr@4: { williamr@4: /** williamr@4: * Returns the default Contacts Model database store URI. williamr@4: * williamr@4: * @return The default Contacts Model database store URI. williamr@4: */ williamr@4: IMPORT_C const TDesC& DefaultCntDbUri(); williamr@4: williamr@4: /** williamr@4: * Returns the global ADN SIM store URI. williamr@4: * williamr@4: * Global means the ADN store that can be accessed by both GSM and 3G phone. williamr@4: * williamr@4: * @return The global ADN SIM store URI williamr@4: */ williamr@4: IMPORT_C const TDesC& SimGlobalAdnUri(); williamr@4: williamr@4: /** williamr@4: * Returns the global FDN SIM store URI. williamr@4: * williamr@4: * Global means the FDN store that can be accessed by both GSM and 3G phone. williamr@4: * williamr@4: * @return The global FDN SIM store URI williamr@4: */ williamr@4: IMPORT_C const TDesC& SimGlobalFdnUri(); williamr@4: williamr@4: /** williamr@4: * Returns the global SDN SIM store URI. williamr@4: * williamr@4: * Global means the SDN store that can be accessed by both GSM and 3G phone. williamr@4: * williamr@4: * @return The global SDN SIM store URI williamr@4: */ williamr@4: IMPORT_C const TDesC& SimGlobalSdnUri(); williamr@4: williamr@4: /** williamr@4: * Returns the MSISDN SIM store URI. williamr@4: * williamr@4: * Global means the MSISDN store that can be accessed by both GSM and williamr@4: * 3G phone. williamr@4: * williamr@4: * NOTE: Though the name of the store suggests that the store will contain williamr@4: * the caller's own phone number it's not exactly the case. It can williamr@4: * contain the number but only if it has been set. williamr@4: * williamr@4: * @return The MSISDN SIM store URI. williamr@4: */ williamr@4: IMPORT_C const TDesC& SimGlobalOwnNumberUri(); williamr@4: } williamr@4: williamr@4: #endif // VPBKCONTACTSTOREURIS_H williamr@4: williamr@4: // End of File