moved examples out of libt2n into libt2n-example
[libt2n] / example-codegen / foo.hxx
diff --git a/example-codegen/foo.hxx b/example-codegen/foo.hxx
deleted file mode 100644 (file)
index 49d0197..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef FOO_HXX
-#define FOO_HXX
-
-#include <boost/serialization/version.hpp>
-
-struct Foo
-{
-  int i,j;
-
-  friend class boost::serialization::access;
-  template<class Archive>
-  void serialize(Archive & ar, const unsigned int /* version */)
-  {
-    ar & BOOST_SERIALIZATION_NVP(i);
-    ar & BOOST_SERIALIZATION_NVP(j);
-  }
-};
-
-BOOST_CLASS_VERSION(Foo, 1)
-
-#endif