X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fcontainer.cpp;h=47d0e49096786ef0d37aef8ec5c537d4e2df8566;hp=a3c9f31f2e6bb053f481ce3e22e27a6640ccdb9b;hb=d2cb39bbe6f8c4577c077c43abe2b9a23bd97a31;hpb=f3823a135635810f521f8409615a463aa3ea1b46 diff --git a/src/container.cpp b/src/container.cpp index a3c9f31..47d0e49 100644 --- a/src/container.cpp +++ b/src/container.cpp @@ -32,17 +32,6 @@ BOOST_CLASS_EXPORT(libt2n::command_container) namespace libt2n { -template -void result_container::serialize(Archive & ar, const unsigned int /* version */) -{ - // When the class Archive corresponds to an output archive, the - // & operator is defined similar to <<. Likewise, when the class Archive - // is a type of input archive the & operator is defined similar to >>. - - ar & BOOST_SERIALIZATION_NVP(result_type); - ar & BOOST_SERIALIZATION_NVP(res); - ar & BOOST_SERIALIZATION_NVP(ex); -} /// deletes the carried result or exception objects result_container::~result_container() @@ -63,12 +52,6 @@ result* result_container::get_result(void) return res; } -template -void command_container::serialize(Archive & ar, const unsigned int /* version */) -{ - ar & BOOST_SERIALIZATION_NVP(cmd); -} - /// deletes the carried command command_container::~command_container() {