phoneapp/phoneringingtoneplayer/inc/mphoneringingtoneobserver.h
changeset 78 baacf668fe89
parent 76 cfea66083b62
equal deleted inserted replaced
76:cfea66083b62 78:baacf668fe89
     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:
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MPHONERINGINGTONEOBSERVER_H
       
    19 #define MPHONERINGINGTONEOBSERVER_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <e32base.h>
       
    23 
       
    24 // CLASS DECLARATION
       
    25 
       
    26 /**
       
    27 *  Observer interface for ringing tone playing
       
    28 *
       
    29 * @since Series 60 3.1
       
    30 */
       
    31 class MPhoneRingingToneObserver
       
    32     {
       
    33     public:  
       
    34         /**
       
    35         * Observer the ringing tone playing
       
    36         * @param aPlayingAudio ETrue is ringing tone audio is playing.
       
    37         * @param aPlayingVideo ETrue is ringing tone video is playing.
       
    38         */
       
    39         virtual void RingingTonePlaying( 
       
    40             TBool aPlayingAudio,
       
    41             TBool aPlayingVideo ) = 0;
       
    42     };
       
    43 
       
    44 #endif      // MPHONERINGINGTONEOBSERVER_H   
       
    45             
       
    46 // End of File