vmbx/vmbxengine/inc/mvmbxchangeobserver.h
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
     1 /*
       
     2 * Copyright (c) 2009-2010 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:  Notifies when vmbx interrelated modules are changed
       
    15 *  Interface   : Internal, MVmbxChangeObserver
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef M_VMBXCHANGEOBSERVER_H
       
    21 #define M_VMBXCHANGEOBSERVER_H
       
    22 
       
    23 // INCLUDE
       
    24 #include "voicemailboxdefsinternal.h"
       
    25 
       
    26 // FORWORD
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  Notifier for vmbx number/address changes
       
    32 *
       
    33 *  @lib vmbxengine.lib
       
    34 *
       
    35 *
       
    36 **/
       
    37 NONSHARABLE_CLASS ( MVmbxChangeObserver )
       
    38     {
       
    39 
       
    40 public:
       
    41 
       
    42    /**
       
    43     * Observer callback function which is called when
       
    44     *sat refresh
       
    45     *
       
    46     **/
       
    47     virtual void SatRefreshL() = 0;
       
    48 
       
    49    /**
       
    50     * Observer callback function which is called when
       
    51     *CenRep Key value changed
       
    52     *
       
    53     * @param aId id related with the key of CenRep
       
    54     **/
       
    55     virtual void CenRepChangedL( TVmbxCenRepKey aId ) = 0;
       
    56 
       
    57    /**
       
    58     * Observer callback function which is called when
       
    59     *sim store changed
       
    60     *
       
    61     **/
       
    62     virtual void SimStoreChangedL() = 0;
       
    63     };
       
    64 
       
    65 #endif // M_VMBXCHANGEOBSERVER_H