.. _program_listing_file__tmp_ws_src_hpp-fcl_include_hpp_fcl_serialization_RSS.h: Program Listing for File RSS.h ============================== |exhale_lsh| :ref:`Return to documentation for file ` (``/tmp/ws/src/hpp-fcl/include/hpp/fcl/serialization/RSS.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp // // Copyright (c) 2021 INRIA // #ifndef HPP_FCL_SERIALIZATION_RSS_H #define HPP_FCL_SERIALIZATION_RSS_H #include "hpp/fcl/BV/RSS.h" #include "hpp/fcl/serialization/fwd.h" namespace boost { namespace serialization { template void serialize(Archive& ar, hpp::fcl::RSS& bv, const unsigned int /*version*/) { ar& make_nvp("axes", bv.axes); ar& make_nvp("Tr", bv.Tr); ar& make_nvp("length", make_array(bv.length, 2)); ar& make_nvp("radius", bv.radius); } } // namespace serialization } // namespace boost #endif // ifndef HPP_FCL_SERIALIZATION_RSS_H