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.h | 58 ---------------------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 syncCommand.h (limited to 'syncCommand.h') diff --git a/syncCommand.h b/syncCommand.h deleted file mode 100644 index b738513..0000000 --- a/syncCommand.h +++ /dev/null @@ -1,58 +0,0 @@ -#ifndef _SYNCCOMMAND_H -#define _SYNCCOMMAND_H -#include -#include - -#include "connectionList.h" -#include "threadUtils.hpp" -#include "syncConnectionCommand.h" -#include "syncRouteCommand.h" -#include "syncRtpCommand.h" -#include "networkPrefix.h" -#include - -class SyncCommand -{ -public: - SyncCommand(ConnectionList & cl ); - SyncCommand(ConnectionList & cl ,u_int16_t mux); - SyncCommand(const std::string &); - SyncCommand(NetworkPrefix); - ~SyncCommand(); - -private: - SyncCommand(const SyncCommand &); - SyncConnectionCommand * scc_; - SyncRouteCommand * src_; - SyncRtpCommand * srtpc_; - friend class boost::serialization::access; - template - void serialize(Archive & ar, const unsigned int version) - { - std::string syncstr; - if (scc_) - { - syncstr = "connection"; - } - if ( src_) - { - syncstr = "route"; - } - if ( srtpc_) - { - syncstr = "rtp"; - } - ar & syncstr; -// std::cout << "syncstr received " <