mmserv/tms/tmscallserver/inc/tmsdtmftoneplayerobserver.h
changeset 33 5e8b14bae8c3
parent 28 ebf79c79991a
child 36 73253677b50a
equal deleted inserted replaced
28:ebf79c79991a 33:5e8b14bae8c3
     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: Telephony Multimedia Service
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef DTMFTONEPLAYEROBSERVER_H
       
    19 #define DTMFTONEPLAYEROBSERVER_H
       
    20 
       
    21 #include <glib.h>
       
    22 
       
    23 namespace TMS {
       
    24 
       
    25 /**
       
    26  *  Observer interface for knowing when dtmf tone player has been initialized.
       
    27  */
       
    28 class TMSDTMFTonePlayerObserver
       
    29     {
       
    30 public:
       
    31     virtual void DTMFInitCompleted(gint status) = 0;
       
    32     virtual void DTMFToneFinished(gint status) = 0;
       
    33     };
       
    34 } //namespace TMS
       
    35 
       
    36 #endif // DTMFTONEPLAYEROBSERVER_H
       
    37