mmserv/tms/inc/tmsinbandtoneimpl.h
changeset 12 5a06f39ad45b
equal deleted inserted replaced
0:71ca22bcf22a 12:5a06f39ad45b
       
     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 TMS_INBAND_IMPL_H
       
    19 #define TMS_INBAND_IMPL_H
       
    20 
       
    21 #include <tms.h>
       
    22 #include <tmsinbandtone.h>
       
    23 
       
    24 namespace TMS {
       
    25 
       
    26 // TMSDTMFImpl class
       
    27 class TMSInbandToneImpl : public TMSInbandTone
       
    28     {
       
    29 public:
       
    30     virtual ~TMSInbandToneImpl();
       
    31     IMPORT_C static gint Create(TMSInbandTone*& inbandtone);
       
    32     IMPORT_C static gint Delete(TMSInbandTone*& inbandtone);
       
    33 
       
    34 private:
       
    35     TMSInbandToneImpl();
       
    36     gint PostConstruct();
       
    37     gint SetParent(TMSInbandTone*& parent);
       
    38 
       
    39 private:
       
    40     TMSInbandToneType iInbandToneType;
       
    41     };
       
    42 
       
    43 } //namespace TMS
       
    44 
       
    45 #endif