diff options
author | Othmar Gsenger <otti@anytun.org> | 2007-12-07 14:51:53 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2007-12-07 14:51:53 +0000 |
commit | ebc305b6a49d24f8bcf05ed10efac42c4398bd5b (patch) | |
tree | d7e22e6353c568da249c5b511dea31536a6bebd8 /buffer.cpp | |
parent | split parameters to global params and connection params (moved to connection ... (diff) |
serialisation of buffer und connection param
Diffstat (limited to 'buffer.cpp')
-rw-r--r-- | buffer.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -32,7 +32,8 @@ #include <string> #include <cstdio> #include <iostream> - +#include <boost/archive/text_oarchive.hpp> +#include <boost/archive/text_iarchive.hpp> #include "datatypes.h" #include "buffer.h" @@ -247,3 +248,10 @@ Buffer Buffer::rightByteShift(u_int32_t width) const return res; } +template<class Archive> +void Buffer::serialize(Archive & ar, const unsigned int version) +{ + ar & length_; + ar & buf_; +} + |