Back to home page

EIC code displayed by LXR

 
 

    


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 // Copyright 2017 James E. King III
0005 // Copyright 2024 Peter Dimov
0006 // Distributed under the Boost Software License, Version 1.0.
0007 // https://www.boost.org/LICENSE_1_0.txt
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 } // uuids
0026 } // boost
0027 
0028 #endif // BOOST_UUID_NAME_GENERATOR_MD5_HPP_INCLUDED