summaryrefslogtreecommitdiff
path: root/seqWindow.cpp
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2007-12-07 15:07:11 +0000
committerOthmar Gsenger <otti@anytun.org>2007-12-07 15:07:11 +0000
commit28063bacec25253d5c67668932321c2044d1aa02 (patch)
tree951a787537b00877c4533dd19c75206e609853f3 /seqWindow.cpp
parentserialisation of buffer und connection param (diff)
serialisation & makefile fix
Diffstat (limited to 'seqWindow.cpp')
-rw-r--r--seqWindow.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/seqWindow.cpp b/seqWindow.cpp
index 28227d9..478efbf 100644
--- a/seqWindow.cpp
+++ b/seqWindow.cpp
@@ -88,3 +88,11 @@ void SeqWindow::clear()
Lock lock(mutex_);
sender_.clear();
}
+
+template<class Archive>
+void SeqWindow::serialize(Archive & ar, const unsigned int version)
+{
+ ar & window_size_;
+ //TODO: Do not sync complete Sender Map!
+ ar & sender_;
+}