mmserv/tms/tmsfactory/src/tmsfactoryimpl.cpp
branchRCL_3
changeset 10 3d8c721bf319
parent 0 71ca22bcf22a
child 13 f5c5c82a163e
--- a/mmserv/tms/tmsfactory/src/tmsfactoryimpl.cpp	Mon Mar 15 12:42:35 2010 +0200
+++ b/mmserv/tms/tmsfactory/src/tmsfactoryimpl.cpp	Wed Mar 31 22:29:45 2010 +0300
@@ -15,15 +15,6 @@
  *
  */
 
-#include <tms.h>
-#include <tmscall.h>
-#include <tmsformat.h>
-#include <tmseffect.h>
-#include <tmsbuffer.h>
-#include <tmssource.h>
-#include <tmssink.h>
-#include "tmsutility.h"
-#include "tmsproxy.h"
 #include "tmscallimpl.h"
 #include "tmsformatimpl.h"
 #include "tmseffectimpl.h"
@@ -31,6 +22,9 @@
 #include "tmssourceimpl.h"
 #include "tmssinkimpl.h"
 #include "tmsglobalroutingimpl.h"
+
+#include "tmsutility.h"
+#include "tmsproxy.h"
 #include "tmsfactoryimpl.h"
 
 using namespace TMS;
@@ -57,9 +51,7 @@
 gint TMSFactoryImpl::DeleteCall(TMSCall*& tmscall)
     {
     gint ret(TMS_RESULT_SUCCESS);
-    // TODO put the delete in the impl
-    delete tmscall; //iTMSCall
-    tmscall = NULL;
+    ret = TMSCallImpl::Delete(tmscall);
     return ret;
     }