/*************************************************************************** * 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); } }