wvuing/wvuiave/AppSrc/MCAContactFetchObserver.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2006-2006 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:  Observer interface to handle contact fetching.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MCACONTACTFETCHOBSERVER_H__
       
    20 #define MCACONTACTFETCHOBSERVER_H__
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32def.h>
       
    24 
       
    25 //	FORWARD CLASS DECLERATIONS
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30  *  Observer interface to handle contact fetching
       
    31  *
       
    32  *  @lib Chat.exe
       
    33  *  @since S60 v3.1
       
    34  */
       
    35 class MCAContactFetchObserver
       
    36     {
       
    37 
       
    38     public: // Interface
       
    39 
       
    40         /**
       
    41          * Handle complete event.
       
    42          * @param aError Result of fetching process.
       
    43          */
       
    44         virtual void HandleFetchCompleteL( TInt aError ) = 0;
       
    45 
       
    46     protected: // For protection.
       
    47 
       
    48         /**
       
    49          * Destructor for protection
       
    50          */
       
    51         virtual ~MCAContactFetchObserver() {}
       
    52     };
       
    53 
       
    54 #endif      // MCACONTACTFETCHOBSERVER_H__
       
    55 
       
    56 // End of File