homesync/contentmanager/cmserver/cmmemorymanager/inc/cmmmobserver.h
branchIOP_Improvements
changeset 40 08b5eae9f9ff
parent 39 6369bfd1b60d
child 41 b4d83ea1d6e2
equal deleted inserted replaced
39:6369bfd1b60d 40:08b5eae9f9ff
     1 /*
       
     2 * Copyright (c) 2006-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:  Callback interface
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef M_CMMMOBSERVER_H
       
    20 #define M_CMMMOBSERVER_H
       
    21 
       
    22 /**
       
    23  *  Callback interface class used to notify derived class
       
    24  *  about status changes in MemoryManager actions
       
    25  *  @lib cmmemorymanager.lib
       
    26  *  @since S60 v3.0
       
    27  */
       
    28 class MCmMmObserver
       
    29     {
       
    30 
       
    31 public:
       
    32 
       
    33     /**
       
    34      * Delete completed notification
       
    35      *
       
    36      * @since S60 3.0
       
    37      * @param aErr
       
    38      */
       
    39     virtual void DeleteCompleteL( TInt aErr ) = 0;
       
    40 
       
    41     /**
       
    42      * Shrink completed notification
       
    43      *
       
    44      * @since S60 3.0
       
    45      * @param aErr
       
    46      */
       
    47     virtual void ShrinkCompleteL( TInt aErr ) = 0;
       
    48     };
       
    49 
       
    50 #endif // M_CMMMOBSERVER_H