contentctrl_plat/adapter_customization_api/inc/MContactsModsFetcher.h
branchRCL_3
changeset 52 4f0867e42d62
parent 14 b922b9936679
equal deleted inserted replaced
51:8e7494275d3a 52:4f0867e42d62
       
     1 /*
       
     2 * Copyright (c) 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:  DS contacts dataprovider.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MCONTACTSMODSFETCHER_H
       
    19 #define MCONTACTSMODSFETCHER_H
       
    20 
       
    21 //  EXTERNAL INCLUDES
       
    22 #include <e32def.h>
       
    23 
       
    24 
       
    25 //  CLASS DEFINITION
       
    26 /**
       
    27  * Interface class for Contacts mods fetcher
       
    28  * @since 3.23
       
    29  */
       
    30 class MContactsModsFetcher
       
    31     {
       
    32     public:     // Destructor
       
    33 
       
    34         virtual ~MContactsModsFetcher() {}
       
    35 
       
    36     public:     // Abstract methods
       
    37 
       
    38         /**
       
    39         * Cancels the current asynchronous request
       
    40         */
       
    41         virtual void CancelRequest( ) = 0;
       
    42 
       
    43         /**
       
    44         * Reads all modifications from clients contacts databse.
       
    45         * @param aStatus  On completion of the operation, contains the result code.
       
    46         */
       
    47         virtual void FetchModificationsL( TRequestStatus& aStatus ) = 0;
       
    48 
       
    49     };
       
    50 
       
    51 #endif      //  MCONTACTSMODSFETCHER_H
       
    52 
       
    53 // End of file