From fffd213c8cba2135afda493d797c41c10354770e Mon Sep 17 00:00:00 2001 From: Othmar Gsenger Date: Sat, 12 Apr 2008 11:38:42 +0000 Subject: big svn cleanup --- syncCommand.cpp | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 syncCommand.cpp (limited to 'syncCommand.cpp') diff --git a/syncCommand.cpp b/syncCommand.cpp deleted file mode 100644 index a36f1d5..0000000 --- a/syncCommand.cpp +++ /dev/null @@ -1,39 +0,0 @@ -#include "syncCommand.h" - -SyncCommand::SyncCommand(ConnectionList & cl ) -{ - scc_ = new SyncConnectionCommand(cl); - src_ = new SyncRouteCommand(); - srtpc_ = new SyncRtpCommand(); -} - -SyncCommand::SyncCommand(ConnectionList & cl, u_int16_t mux ) -{ - scc_ = new SyncConnectionCommand(cl,mux); - src_=NULL; - srtpc_=NULL; -} - -SyncCommand::SyncCommand(NetworkPrefix np ) -{ - scc_ = NULL; - src_ = new SyncRouteCommand(np); - srtpc_=NULL; -} - -SyncCommand::SyncCommand(const std::string & callid ) -{ - scc_ = NULL; - src_ = NULL; - srtpc_= new SyncRtpCommand(callid); -} - -SyncCommand::~SyncCommand() -{ - if (scc_) - delete scc_; - if (src_) - delete src_; - if (srtpc_) - delete srtpc_; -} -- cgit v1.2.3