mmserv/tms/tmsimpl/inc/tmscallbodyimpl.h
changeset 55 e267340986c9
parent 52 4ce423f34688
equal deleted inserted replaced
52:4ce423f34688 55:e267340986c9
     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_CALL_BODY_IMPL_H
       
    19 #define TMS_CALL_BODY_IMPL_H
       
    20 
       
    21 #include <glib.h>
       
    22 #include "tmscallbody.h"
       
    23 
       
    24 namespace TMS {
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class TMSStream;
       
    28 class TMSDTMF;
       
    29 class TMSRingTone;
       
    30 
       
    31 // TMSCallBodyImpl class
       
    32 class TMSCallBodyImpl : public TMSCallBody
       
    33     {
       
    34 public:
       
    35     static gint Create(TMSCallBody*& bodyimpl);
       
    36     virtual ~TMSCallBodyImpl();
       
    37 
       
    38     // From TMSCallBody
       
    39     virtual TMSCallType GetCallType();
       
    40     virtual gint GetCallContextId(guint& ctxid);
       
    41     virtual gint CreateStream(TMSStreamType type, TMSStream*& strm);
       
    42     virtual gint DeleteStream(TMSStream*& strm);
       
    43 
       
    44 private:
       
    45     TMSCallBodyImpl();
       
    46     gint PostConstruct();
       
    47     };
       
    48 
       
    49 } //namespace TMS
       
    50 
       
    51 #endif // TMS_CALL_BODY_IMPL_H
       
    52 
       
    53 // End of file