1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/app/VPbkContactStoreUris.h Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -0,0 +1,87 @@
1.4 +/*
1.5 +* Copyright (c) 2004-2007 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description: Default store URIs offered by the Virtual Phonebook
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +#ifndef VPBKCONTACTSTOREURIS_H
1.24 +#define VPBKCONTACTSTOREURIS_H
1.25 +
1.26 +// INCLUDES
1.27 +#include <e32std.h>
1.28 +
1.29 +/**
1.30 + * Default store URIs offered by the Virtual Phonebook.
1.31 + *
1.32 + * The Virtual Phonebook doesn't offer dynamic URI configuration repository.
1.33 + * The repository of URIs is left to responsibility of a higher level component.
1.34 + *
1.35 + * @lib VPbkEng.lib
1.36 + */
1.37 +namespace VPbkContactStoreUris
1.38 + {
1.39 + /**
1.40 + * Returns the default Contacts Model database store URI.
1.41 + *
1.42 + * @return The default Contacts Model database store URI.
1.43 + */
1.44 + IMPORT_C const TDesC& DefaultCntDbUri();
1.45 +
1.46 + /**
1.47 + * Returns the global ADN SIM store URI.
1.48 + *
1.49 + * Global means the ADN store that can be accessed by both GSM and 3G phone.
1.50 + *
1.51 + * @return The global ADN SIM store URI
1.52 + */
1.53 + IMPORT_C const TDesC& SimGlobalAdnUri();
1.54 +
1.55 + /**
1.56 + * Returns the global FDN SIM store URI.
1.57 + *
1.58 + * Global means the FDN store that can be accessed by both GSM and 3G phone.
1.59 + *
1.60 + * @return The global FDN SIM store URI
1.61 + */
1.62 + IMPORT_C const TDesC& SimGlobalFdnUri();
1.63 +
1.64 + /**
1.65 + * Returns the global SDN SIM store URI.
1.66 + *
1.67 + * Global means the SDN store that can be accessed by both GSM and 3G phone.
1.68 + *
1.69 + * @return The global SDN SIM store URI
1.70 + */
1.71 + IMPORT_C const TDesC& SimGlobalSdnUri();
1.72 +
1.73 + /**
1.74 + * Returns the MSISDN SIM store URI.
1.75 + *
1.76 + * Global means the MSISDN store that can be accessed by both GSM and
1.77 + * 3G phone.
1.78 + *
1.79 + * NOTE: Though the name of the store suggests that the store will contain
1.80 + * the caller's own phone number it's not exactly the case. It can
1.81 + * contain the number but only if it has been set.
1.82 + *
1.83 + * @return The MSISDN SIM store URI.
1.84 + */
1.85 + IMPORT_C const TDesC& SimGlobalOwnNumberUri();
1.86 + }
1.87 +
1.88 +#endif // VPBKCONTACTSTOREURIS_H
1.89 +
1.90 +// End of File