File indexing completed on 2025-07-01 08:33:19
0001 #ifndef BOOST_UUID_NAME_GENERATOR_MD5_HPP_INCLUDED
0002 #define BOOST_UUID_NAME_GENERATOR_MD5_HPP_INCLUDED
0003
0004
0005
0006
0007
0008
0009 #include <boost/uuid/detail/basic_name_generator.hpp>
0010 #include <boost/uuid/detail/md5.hpp>
0011
0012 namespace boost {
0013 namespace uuids {
0014
0015 class name_generator_md5: public detail::basic_name_generator<detail::md5>
0016 {
0017 public:
0018
0019 explicit name_generator_md5( uuid const& namespace_uuid ) noexcept:
0020 detail::basic_name_generator<detail::md5>( namespace_uuid )
0021 {
0022 }
0023 };
0024
0025 }
0026 }
0027
0028 #endif