phonesrv_plat/voice_mailbox_number_api/inc/mvoicemailboxobserver.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 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 mailbox numbers are changed
       
    15 *  Interface   : External, MVoiceMailboxObserver
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef M_VOICEMAILBOXOBSERVER_H
       
    20 #define M_VOICEMAILBOXOBSERVER_H
       
    21 
       
    22 class CVoiceMailboxEntry;
       
    23 
       
    24 // INCLUDES
       
    25 /**
       
    26  *  Notifier for vmbx number/address changes
       
    27  *
       
    28  *  @lib vmbxengine.lib
       
    29  *
       
    30  */
       
    31 class MVoiceMailboxObserver
       
    32     {
       
    33 public:
       
    34 
       
    35    /**
       
    36     * Observer callback function which is called when
       
    37     * changes to voice mailbox entries occur.
       
    38     *
       
    39     * @param aVmbxEntry The new vmbx entry.
       
    40     */
       
    41     virtual void HandleNotifyL( const CVoiceMailboxEntry& aVmbxEntry ) = 0;
       
    42 
       
    43     };
       
    44 
       
    45 #endif // M_VOICEMAILBOXOBSERVER_H