mmserv/tms/tmsimpl/src/tmsmodemsinkbodyimpl.cpp
changeset 22 128eb6a32b84
parent 14 80975da52420
equal deleted inserted replaced
16:43d09473c595 22:128eb6a32b84
    31     }
    31     }
    32 
    32 
    33 gint TMSModemSinkBodyImpl::Create(TMSModemSinkBody*& bodyimpl)
    33 gint TMSModemSinkBodyImpl::Create(TMSModemSinkBody*& bodyimpl)
    34     {
    34     {
    35     gint ret(TMS_RESULT_INSUFFICIENT_MEMORY);
    35     gint ret(TMS_RESULT_INSUFFICIENT_MEMORY);
    36     TMSModemSinkBodyImpl* self = new TMSModemSinkBodyImpl;
    36     TMSModemSinkBodyImpl* self = new TMSModemSinkBodyImpl();
    37     if (self)
    37     if (self)
    38         {
    38         {
    39         ret = self->PostConstruct();
    39         ret = self->PostConstruct();
    40         if (ret != TMS_RESULT_SUCCESS)
    40         if (ret != TMS_RESULT_SUCCESS)
    41             {
    41             {
    62 
    62 
    63 void TMSModemSinkBodyImpl::SetProxy(TMSCallProxy* aProxy,
    63 void TMSModemSinkBodyImpl::SetProxy(TMSCallProxy* aProxy,
    64         gpointer /*queuehandler*/)
    64         gpointer /*queuehandler*/)
    65     {
    65     {
    66     iProxy = aProxy;
    66     iProxy = aProxy;
    67     //static_cast<TMSQueueHandler*>(queuehandler)->AddObserver(*this, TMS_SINK_MODEM);
       
    68     }
    67     }
    69 
    68 
    70 // End of file
    69 // End of file