uiservicetab/vimpststorage/tsrc/vimpststorage_ut/src/s_CPBK2StoreConfiguration.cpp
branchRCL_3
changeset 28 3104fc151679
parent 27 2b7283837edb
child 29 9a48e301e94b
equal deleted inserted replaced
27:2b7283837edb 28:3104fc151679
     1 /*
       
     2 * Copyright (c) 2005-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 #include <CPbk2StoreConfiguration.h>
       
    22 #include <TVPbkContactStoreUriPtr.h>
       
    23 /**
       
    24  * Creates a new instance of this class.
       
    25  *
       
    26  * @return  A new instance of this class.
       
    27  */
       
    28   EXPORT_C /*static*/ CPbk2StoreConfiguration* CPbk2StoreConfiguration::NewL(){ }
       
    29 
       
    30 /**
       
    31  * Destructor.
       
    32  */
       
    33   CPbk2StoreConfiguration::~CPbk2StoreConfiguration(){ }
       
    34 
       
    35 
       
    36 
       
    37 /**
       
    38  * Fetches an array of configured contact store URIs.
       
    39  *
       
    40  * @return  Array of URIs that is the current configuration.
       
    41  */
       
    42   CVPbkContactStoreUriArray* CPbk2StoreConfiguration::CurrentConfigurationL() const{ }
       
    43 
       
    44 /**
       
    45  * Fetches an array of contact store URIs to be used
       
    46  * in searching, for example in phone number matching.
       
    47  *
       
    48  * @return  Array of URIs to be used for searching.
       
    49  */
       
    50   CVPbkContactStoreUriArray* CPbk2StoreConfiguration::SearchStoreConfigurationL(){ }
       
    51 
       
    52 /**
       
    53  * Fetches an array of supported contact stores URIs.
       
    54  * NOTE: All returned stores are not necessarily supported by
       
    55  * the current HW / SW configuration of the phone.
       
    56  *
       
    57  * @return  Array of URIs that is the supported store configuration.
       
    58  */
       
    59   CVPbkContactStoreUriArray* CPbk2StoreConfiguration::SupportedStoreConfigurationL() const{ }
       
    60 
       
    61 /**
       
    62  * Returns the URI of the default store for saving contacts.
       
    63  *
       
    64  * @return  URI of the default store.
       
    65  */
       
    66   TVPbkContactStoreUriPtr CPbk2StoreConfiguration::DefaultSavingStoreL() const{ }
       
    67 
       
    68 /**
       
    69  * Adds a new contact store URI to current configuration.
       
    70  * Then use AddSupportedContactStoreUriL to add the store to
       
    71  * supported configuration if desired.
       
    72  *
       
    73  * @param aURI      The URI to add.
       
    74  */
       
    75   void CPbk2StoreConfiguration::AddContactStoreURIL(
       
    76         TVPbkContactStoreUriPtr aURI ){ }
       
    77 
       
    78 /**
       
    79  * Removes a contact store URI from current configuration.
       
    80  * Then use RemoveSupportedContactStoreUriL to remove the store from
       
    81  * supported configuration if desired.
       
    82  *
       
    83  * @param aURI      The URI to remove.
       
    84  */
       
    85   void CPbk2StoreConfiguration::RemoveContactStoreURIL(
       
    86         TVPbkContactStoreUriPtr aURI ){ }
       
    87 
       
    88 /**
       
    89  * Adds a new configuration observer.
       
    90  *
       
    91  * @param aObserver     The observer to add.
       
    92  */
       
    93   void CPbk2StoreConfiguration::AddObserverL(
       
    94         MPbk2StoreConfigurationObserver& aObserver ){ }
       
    95 
       
    96 /**
       
    97  * Removes a configuration observer.
       
    98  *
       
    99  * @param aObserver     The observer to remove.
       
   100  */
       
   101   void CPbk2StoreConfiguration::RemoveObserver(
       
   102         MPbk2StoreConfigurationObserver& aObserver ){ }
       
   103 
       
   104 /**
       
   105  * Adds a default saving store observer.
       
   106  *
       
   107  * @param aObserver     The observer to add.
       
   108  */
       
   109   void CPbk2StoreConfiguration::AddDefaultSavingStoreObserverL(
       
   110         MPbk2DefaultSavingStoreObserver& aObserver ){ }
       
   111 
       
   112 /**
       
   113  * Removes a default saving store observer.
       
   114  *
       
   115  * @param aObserver     The observer to remove.
       
   116  */
       
   117   void CPbk2StoreConfiguration::RemoveDefaultSavingStoreObserver(
       
   118         MPbk2DefaultSavingStoreObserver& aObserver ){ }
       
   119 
       
   120 /**
       
   121  * Adds a new contact store URI to supported configuration.
       
   122  * Use AddContactStoreURIL to add the store to current
       
   123  * configuration if desired.
       
   124  *
       
   125  * @param aURI      The URI to add.
       
   126  */
       
   127   void CPbk2StoreConfiguration::AddSupportedContactStoreURIL(
       
   128         TVPbkContactStoreUriPtr aURI ){ }
       
   129 
       
   130 /**
       
   131  * Removes a contact store URI from supported configuration.
       
   132  * Use RemoveContactStoreUriL to remove the store from
       
   133  * current configuration if desired.
       
   134  *
       
   135  * @param aURI      The URI to remove.
       
   136  */
       
   137   void CPbk2StoreConfiguration::RemoveSupportedContactStoreURIL(
       
   138         TVPbkContactStoreUriPtr aURI ){ }
       
   139 
       
   140 
       
   141   CPbk2StoreConfiguration::CPbk2StoreConfiguration(){ }
       
   142 void CPbk2StoreConfiguration::ConstructL(){ }
       
   143 
       
   144    
       
   145 
       
   146 // End of File