mmserv/tms/tmsimpl/inc/tmsmodemsourcebodyimpl.h
changeset 0 71ca22bcf22a
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     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_MODEM_SOURCE_BODY_IMPL_H
       
    19 #define TMS_MODEM_SOURCE_BODY_IMPL_H
       
    20 
       
    21 #include <tms.h>
       
    22 #include "tmsmodemsourcebody.h"
       
    23 
       
    24 namespace TMS {
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class TMSCallProxy;
       
    28 
       
    29 // TMSModemSourceBodyImpl class
       
    30 class TMSModemSourceBodyImpl : public TMSModemSourceBody
       
    31     {
       
    32 public:
       
    33     static gint Create(TMSModemSourceBody*& bodyimpl);
       
    34     virtual ~TMSModemSourceBodyImpl();
       
    35 
       
    36     // From TMSModemSourceBody begins
       
    37     virtual gint GetType(TMSSourceType& sourcetype);
       
    38 
       
    39     void SetProxy(TMSCallProxy* aProxy, gpointer queuehandler);
       
    40 
       
    41 private:
       
    42     TMSModemSourceBodyImpl();
       
    43     gint PostConstruct();
       
    44 
       
    45 private:
       
    46     TMSCallProxy* iProxy;
       
    47     };
       
    48 
       
    49 } //namespace TMS
       
    50 
       
    51 #endif // TMS_MODEM_SOURCE_BODY_IMPL_H
       
    52 
       
    53 // End of file