ccservices/cmsservices/cmsengine/Server/inc/MCmsPhonebookOperationsObserver.h
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     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:  An observer interface for contact store open completion
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MCMSPHONEBOOKOPERATIONSOBSERVER_H
       
    20 #define MCMSPHONEBOOKOPERATIONSOBSERVER_H
       
    21 
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32std.h>
       
    25 
       
    26 
       
    27 /**
       
    28  * An observer interface for contact store open complete notification
       
    29  *
       
    30  *
       
    31  */
       
    32 class MCmsPhonebookOperationsObserver
       
    33     {
       
    34     public:  
       
    35         /**
       
    36          * Called when a the stores open is compete 
       
    37          *
       
    38          * 
       
    39          */
       
    40         virtual void StoreOpenComplete() =0;
       
    41         
       
    42         /**
       
    43          * Called when a the contact retrieve operation is complete 
       
    44          *
       
    45          * @param aError Operation completion status
       
    46          */
       
    47         virtual void CmsSingleContactOperationComplete( TInt aError ) =0;
       
    48         
       
    49 
       
    50               
       
    51     protected:  // Destructor
       
    52         virtual ~MCmsPhonebookOperationsObserver() { }
       
    53 
       
    54     };
       
    55 
       
    56 
       
    57 #endif  // MCMSPHONEBOOKOPERATIONSOBSERVER_H
       
    58 
       
    59 //End of file