qtms/inc/qtmscallimpl.h
changeset 27 cbb1bfb7ebfb
child 50 762d760dcfdf
equal deleted inserted replaced
25:d881023c13eb 27:cbb1bfb7ebfb
       
     1 /*
       
     2  * Copyright (c) 2010 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: QT Bindings for TMS
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef QTMS_CALL_IMPL_H
       
    19 #define QTMS_CALL_IMPL_H
       
    20 
       
    21 #include <glib.h>
       
    22 #include <qtmscall.h>
       
    23 
       
    24 // FORWARD DECLARATIONS
       
    25 namespace TMS {
       
    26 class TMSCall;
       
    27 }
       
    28 
       
    29 namespace QTMS {
       
    30 
       
    31 // FORWARD DECLARATIONS
       
    32 class QTMSStream;
       
    33 class QTMSDTMF;
       
    34 class QTMSRingTone;
       
    35 
       
    36 // QTMSCallImpl class
       
    37 class QTMSCallImpl : public QTMSCall
       
    38     {
       
    39 public:
       
    40     static gint Create(QTMSCall*& qtmscall, TMS::TMSCall*& tmscall);
       
    41 
       
    42     virtual ~QTMSCallImpl();
       
    43 
       
    44     // From QTMSCallBody
       
    45     // QTMSCallType GetCallType();
       
    46     // gint GetCallContextId(guint& ctxid);
       
    47     // gint CreateStream(QTMSStreamType type, QTMSStream*& strm);
       
    48     // gint DeleteStream(QTMSStream*& strm);
       
    49 
       
    50 private:
       
    51     // TMS::TMSCall* iTmsCall;
       
    52     QTMSCallImpl();
       
    53     gint PostConstruct();
       
    54     };
       
    55 
       
    56 } //namespace QTMS
       
    57 
       
    58 #endif // QTMS_CALL_IMPL_H
       
    59 
       
    60 // End of file