summaryrefslogtreecommitdiff
path: root/syncRtpCommand.h
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-04-12 11:38:42 +0000
committerOthmar Gsenger <otti@anytun.org>2008-04-12 11:38:42 +0000
commitfffd213c8cba2135afda493d797c41c10354770e (patch)
treebb5eea1b12871d8c3fed0e687d83be3e504d11b2 /syncRtpCommand.h
parentsvn cleanup (diff)
big svn cleanup
Diffstat (limited to 'syncRtpCommand.h')
-rw-r--r--syncRtpCommand.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/syncRtpCommand.h b/syncRtpCommand.h
deleted file mode 100644
index cc1309e..0000000
--- a/syncRtpCommand.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef _SYNCRTPCOMMAND_H
-#define _SYNCRTPCOMMAND_H
-#include <boost/archive/text_oarchive.hpp>
-#include <boost/archive/text_iarchive.hpp>
-
-#include "threadUtils.hpp"
-#include "rtpSessionTable.h"
-
-class SyncRtpCommand
-{
-public:
- SyncRtpCommand(const std::string & );
- SyncRtpCommand();
- std::string getCallId() const;
-
-private:
- SyncRtpCommand(const SyncRtpCommand &);
- std::string callid_;
- friend class boost::serialization::access;
- template<class Archive>
- void serialize(Archive & ar, const unsigned int version)
- {
- Lock lock(gRtpSessionTable.getMutex());
- ar & callid_;
- bool is_new;
- ar & gRtpSessionTable.getOrNewSessionUnlocked(callid_, is_new);
- };
-};
-
-
-#endif // _SYNCCOMMAND_H