Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-12 08:31:51

0001 #ifndef BOOST_UUID_NAME_GENERATOR_HPP_INCLUDED
0002 #define BOOST_UUID_NAME_GENERATOR_HPP_INCLUDED
0003 
0004 // Boost name_generator.hpp header file  -----------------------------//
0005 
0006 // Copyright 2010 Andy Tompkins.
0007 // Copyright 2017 James E. King III
0008 
0009 // Distributed under the Boost Software License, Version 1.0. (See
0010 // accompanying file LICENSE_1_0.txt or copy at
0011 //  https://www.boost.org/LICENSE_1_0.txt)
0012 
0013 #include <boost/uuid/name_generator_md5.hpp>
0014 #include <boost/uuid/name_generator_sha1.hpp>
0015 
0016 namespace boost {
0017 namespace uuids {
0018 
0019 // Only provided for compatibility with 1.85 and earlier
0020 using name_generator = name_generator_sha1;
0021 
0022 // Only provided for compatibility with 1.85 and earlier
0023 using name_generator_latest = name_generator_sha1;
0024 
0025 } // uuids
0026 } // boost
0027 
0028 #endif // BOOST_UUID_NAME_GENERATOR_HPP_INCLUDED