test support of group having multiple .cpp files
[libt2n] / example-codegen / other-1.cpp
diff --git a/example-codegen/other-1.cpp b/example-codegen/other-1.cpp
new file mode 100644 (file)
index 0000000..568082d
--- /dev/null
@@ -0,0 +1,33 @@
+#include <string>
+// serialization of string
+#include <boost/serialization/string.hpp>
+// serialization of pair
+#include <boost/serialization/utility.hpp>
+
+// std::vector
+#include <vector>
+#include <boost/serialization/vector.hpp>
+
+#include "foo.hxx"
+
+#include "other_common.hxx"
+
+using namespace std;
+
+//! test function overload
+LIBT2N_EXPORT int t3(int i)
+{
+    return i;
+}
+
+//! test pair, multiple arguments and namespace
+LIBT2N_EXPORT bool t3(int i, float f, const string &s, const pair<int, float> &p)
+{
+    return (i==p.first) && (f==p.second) && (s=="hello");
+}
+
+//! test std::vector
+LIBT2N_EXPORT bool t3(const std::vector<int> &i)
+{
+    return (i.size()==1) && (i[0]==10);
+}