mmserv/tms/tmsimpl/src/tmsstreambodyimpl.cpp
changeset 22 128eb6a32b84
parent 14 80975da52420
child 21 2ed61feeead6
child 31 8dfd592727cb
child 40 60e492b28869
equal deleted inserted replaced
16:43d09473c595 22:128eb6a32b84
    75 
    75 
    76 gint TMSStreamBodyImpl::Create(TMSCallType callType, TMSStreamType stype,
    76 gint TMSStreamBodyImpl::Create(TMSCallType callType, TMSStreamType stype,
    77         TMSCallProxy* proxy, TMSStream& parent, TMSStreamBody*& bodyimpl)
    77         TMSCallProxy* proxy, TMSStream& parent, TMSStreamBody*& bodyimpl)
    78     {
    78     {
    79     gint ret(TMS_RESULT_INSUFFICIENT_MEMORY);
    79     gint ret(TMS_RESULT_INSUFFICIENT_MEMORY);
    80     TMSStreamBodyImpl* self = new TMSStreamBodyImpl;
    80     TMSStreamBodyImpl* self = new TMSStreamBodyImpl();
    81     if (self)
    81     if (self)
    82         {
    82         {
    83         ret = self->PostConstruct(callType, stype, proxy, parent);
    83         ret = self->PostConstruct(callType, stype, proxy, parent);
    84         if (ret != TMS_RESULT_SUCCESS)
    84         if (ret != TMS_RESULT_SUCCESS)
    85             {
    85             {