.. _program_listing_file_include_coal_serialization_AABB.h: Program Listing for File AABB.h =============================== |exhale_lsh| :ref:`Return to documentation for file ` (``include/coal/serialization/AABB.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp // // Copyright (c) 2021 INRIA // #ifndef COAL_SERIALIZATION_AABB_H #define COAL_SERIALIZATION_AABB_H #include "coal/BV/AABB.h" #include "coal/serialization/fwd.h" namespace boost { namespace serialization { template void serialize(Archive& ar, coal::AABB& aabb, const unsigned int /*version*/) { ar& make_nvp("min_", aabb.min_); ar& make_nvp("max_", aabb.max_); } } // namespace serialization } // namespace boost #endif // ifndef COAL_SERIALIZATION_AABB_H