diff -r e35735ece90c -r 3d8c721bf319 mmserv/tms/tmsimpl/src/tmscallimpl.cpp --- a/mmserv/tms/tmsimpl/src/tmscallimpl.cpp Mon Mar 15 12:42:35 2010 +0200 +++ b/mmserv/tms/tmsimpl/src/tmscallimpl.cpp Wed Mar 31 22:29:45 2010 +0300 @@ -15,7 +15,6 @@ * */ -#include #include "tmsutility.h" #include "tmsipcallbodyimpl.h" #include "tmscscallbodyimpl.h" @@ -63,7 +62,6 @@ return ret; } -// TO DO stop exporting this function EXPORT_C gint TMSCallImpl::Create(TMSCallType ctype, TMSCall*& tmscall, guint ctxid) { @@ -85,4 +83,13 @@ return ret; } -// End of file +EXPORT_C gint TMSCallImpl::Delete(TMSCall*& tmscall) + { + TRACE_PRN_FN_ENT; + gint ret(TMS_RESULT_INSUFFICIENT_MEMORY); + delete (TMSCallImpl*) (tmscall); + tmscall = NULL; + TRACE_PRN_FN_EXT; + return ret; + } +