temporarily add other.cpp
[libt2n] / example-codegen / other-2.cpp
1 #include <string>
2 // serialization of string
3 #include <boost/serialization/string.hpp>
4 // serialization of pair
5 #include <boost/serialization/utility.hpp>
6
7 // std::vector
8 #include <vector>
9 #include <boost/serialization/vector.hpp>
10
11 #include "foo.hxx"
12
13 #include "other_common.hxx"
14
15 using namespace std;
16
17 //! test own type
18 LIBT2N_EXPORT bool t3(const Foo &foo)
19 {
20     return (foo.i==foo.j);
21 }