libt2n: (reinhard) compile fixes.
[libt2n] / src / container.tcc
CommitLineData
d2cb39bb
RP
1/***************************************************************************
2 * Copyright (C) 2006 by Gerd v. Egidy *
3 * gve@intra2net.com *
4 * *
5 * This library is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU Lesser General Public License version *
7 * 2.1 as published by the Free Software Foundation. *
8 * *
9 * This library is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU Lesser General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU Lesser General Public *
15 * License along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
18 ***************************************************************************/
19
20namespace libt2n
21{
22
23template<class Archive>
24void result_container::serialize(Archive & ar, const unsigned int /* version */)
25{
26 // When the class Archive corresponds to an output archive, the
27 // & operator is defined similar to <<. Likewise, when the class Archive
28 // is a type of input archive the & operator is defined similar to >>.
29
30 ar & BOOST_SERIALIZATION_NVP(result_type);
31 ar & BOOST_SERIALIZATION_NVP(res);
32 ar & BOOST_SERIALIZATION_NVP(ex);
33}
34
35template<class Archive>
36void command_container::serialize(Archive & ar, const unsigned int /* version */)
37{
38 ar & BOOST_SERIALIZATION_NVP(cmd);
39}
40
41
42
43}