uiservicetab/vimpststorage/tsrc/vimpststorage_ut/src/s_VPbkContactStoreUris.cpp
branchRCL_3
changeset 29 9a48e301e94b
parent 0 5e5d6b214f4f
equal deleted inserted replaced
28:3104fc151679 29:9a48e301e94b
       
     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:  
       
    15 :                
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 //  INCLUDES
       
    23 #include <VPbkContactStoreUris.h>
       
    24 
       
    25 _LIT( KPhoneBookDbURI, "cntdb://c:contacts.cdb");
       
    26 
       
    27 /**
       
    28  * Returns the default Contacts Model database store URI.
       
    29  *
       
    30  * @return The default Contacts Model database store URI.
       
    31  */
       
    32 EXPORT_C const TDesC& VPbkContactStoreUris::DefaultCntDbUri(){ return KPhoneBookDbURI(); }
       
    33 
       
    34 /**
       
    35  * Returns the global ADN SIM store URI.
       
    36  * 
       
    37  * Global means the ADN store that can be accessed by both GSM and 3G phone.
       
    38  * 
       
    39  * @return The global ADN SIM store URI
       
    40  */
       
    41 EXPORT_C const TDesC& VPbkContactStoreUris::SimGlobalAdnUri(){ return KPhoneBookDbURI(); }
       
    42 
       
    43 /**
       
    44  * Returns the global FDN SIM store URI.
       
    45  *
       
    46  * Global means the FDN store that can be accessed by both GSM and 3G phone.
       
    47  *
       
    48  * @return The global FDN SIM store URI
       
    49  */
       
    50 EXPORT_C const TDesC& VPbkContactStoreUris::SimGlobalFdnUri(){ return KPhoneBookDbURI(); }
       
    51 
       
    52 /**
       
    53  * Returns the global SDN SIM store URI. 
       
    54  *
       
    55  * Global means the SDN store that can be accessed by both GSM and 3G phone.
       
    56  * 
       
    57  * @return The global SDN SIM store URI
       
    58  */
       
    59 EXPORT_C const TDesC& VPbkContactStoreUris::SimGlobalSdnUri(){ return KPhoneBookDbURI(); }
       
    60 
       
    61 /**
       
    62  * Returns the MSISDN SIM store URI.
       
    63  *
       
    64  * Global means the MSISDN store that can be accessed by both GSM and
       
    65  * 3G phone.
       
    66  *
       
    67  * NOTE: Though the name of the store suggests that the store will contain
       
    68  *       the caller's own phone number it's not exactly the case. It can
       
    69  *       contain the number but only if it has been set.
       
    70  *
       
    71  * @return The MSISDN SIM store URI.
       
    72  */
       
    73 EXPORT_C const TDesC& VPbkContactStoreUris::SimGlobalOwnNumberUri(){ return KPhoneBookDbURI(); }
       
    74     
       
    75             
       
    76 // End of File