mmserv/tms/tmsimpl/src/tmsstreamimpl.cpp
branchRCL_3
changeset 10 3d8c721bf319
parent 0 71ca22bcf22a
child 13 f5c5c82a163e
equal deleted inserted replaced
8:e35735ece90c 10:3d8c721bf319
    13  *
    13  *
    14  * Description: Telephony Multimedia Service
    14  * Description: Telephony Multimedia Service
    15  *
    15  *
    16  */
    16  */
    17 
    17 
    18 #include <tms.h>
    18 #include "tmsutility.h"
    19 #include "tmsstreambodyimpl.h"
    19 #include "tmsstreambodyimpl.h"
    20 #include "tmsstreamimpl.h"
    20 #include "tmsstreamimpl.h"
    21 
    21 
    22 using namespace TMS;
    22 using namespace TMS;
    23 
    23 
    24 TMSStreamImpl::TMSStreamImpl()
    24 TMSStreamImpl::TMSStreamImpl()
    25     {
    25     {
       
    26     TRACE_PRN_FN_ENT;
       
    27     TRACE_PRN_FN_EXT;
    26     }
    28     }
    27 
    29 
    28 TMSStreamImpl::~TMSStreamImpl()
    30 TMSStreamImpl::~TMSStreamImpl()
    29     {
    31     {
       
    32     TRACE_PRN_FN_ENT;
       
    33     TRACE_PRN_FN_EXT;
    30     }
    34     }
    31 
    35 
    32 gint TMSStreamImpl::PostConstruct(TMSCallType callType, TMSStreamType stype,
    36 gint TMSStreamImpl::PostConstruct(TMSCallType callType, TMSStreamType stype,
    33         TMSCallProxy* proxy)
    37         TMSCallProxy* proxy)
    34     {
    38     {
    61         }
    65         }
    62     strm = self;
    66     strm = self;
    63     return ret;
    67     return ret;
    64     }
    68     }
    65 
    69 
    66 // End of file
    70 gint TMSStreamImpl::Delete(TMSStream*& strm)
       
    71     {
       
    72     TRACE_PRN_FN_ENT;
       
    73     gint ret(TMS_RESULT_SUCCESS);
       
    74     delete (TMSStreamImpl*) (strm);
       
    75     strm = NULL;
       
    76     TRACE_PRN_FN_EXT;
       
    77     return ret;
       
    78     }
       
    79