X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fcontainer.tcc;fp=src%2Fcontainer.tcc;h=f8064bd85a2c91e8ba4e50a513130a92d98b6912;hp=0000000000000000000000000000000000000000;hb=d2cb39bbe6f8c4577c077c43abe2b9a23bd97a31;hpb=f3823a135635810f521f8409615a463aa3ea1b46 diff --git a/src/container.tcc b/src/container.tcc new file mode 100644 index 0000000..f8064bd --- /dev/null +++ b/src/container.tcc @@ -0,0 +1,43 @@ +/*************************************************************************** + * Copyright (C) 2006 by Gerd v. Egidy * + * gve@intra2net.com * + * * + * This library is free software; you can redistribute it and/or modify * + * it under the terms of the GNU Lesser General Public License version * + * 2.1 as published by the Free Software Foundation. * + * * + * This library is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU Lesser General Public License for more details. * + * * + * You should have received a copy of the GNU Lesser General Public * + * License along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +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); +} + +template +void command_container::serialize(Archive & ar, const unsigned int /* version */) +{ + ar & BOOST_SERIALIZATION_NVP(cmd); +} + + + +}