test_traits_pass.cpp 819 B

123456789101112131415161718192021222324252627282930
  1. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  2. // test_traits_pass.cpp: test implementation level trait
  3. // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
  4. // Use, modification and distribution is subject to the Boost Software
  5. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. // compile test for traits
  8. #include "test_tools.hpp"
  9. #include <boost/serialization/level.hpp>
  10. #include <boost/serialization/tracking.hpp>
  11. #include <boost/serialization/version.hpp>
  12. class B
  13. {
  14. };
  15. BOOST_CLASS_IMPLEMENTATION(B, boost::serialization::object_class_info)
  16. BOOST_CLASS_VERSION(B, 2)
  17. BOOST_CLASS_TRACKING(B, boost::serialization::track_always)
  18. int
  19. test_main( int argc, char* argv[] )
  20. {
  21. return EXIT_SUCCESS;
  22. }
  23. // EOF