make distcheck fixes
[libt2n] / examples / minimalistic-stub.cpp
diff --git a/examples/minimalistic-stub.cpp b/examples/minimalistic-stub.cpp
deleted file mode 100644 (file)
index 1c2ffcb..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "minimalistic-stub.hxx"
-#include <boost/serialization/export.hpp>
-
-/* register types with boost serialization */
-
-BOOST_CLASS_EXPORT(cmd_group_example)
-BOOST_CLASS_EXPORT(testfunc_cmd)
-BOOST_CLASS_EXPORT(testfunc_res)
-
-void
-extended_type_info_test() {
-  cmd_group_example* t=new testfunc_cmd();
-  const boost::serialization::extended_type_info * true_type
-    = boost::serialization::type_info_implementation<libt2n::command>::type::get_derived_extended_type_info(*t);
-  // note:if this exception is thrown, be sure that derived pointer
-  // is either regsitered or exported.
-  assert(NULL != true_type);
-  assert(std::string("testfunc_cmd")==true_type->get_key());
-}