name_generator.hpp 810 B

12345678910111213141516171819202122232425262728
  1. #ifndef BOOST_UUID_NAME_GENERATOR_HPP_INCLUDED
  2. #define BOOST_UUID_NAME_GENERATOR_HPP_INCLUDED
  3. // Boost name_generator.hpp header file -----------------------------//
  4. // Copyright 2010 Andy Tompkins.
  5. // Copyright 2017 James E. King III
  6. // Distributed under the Boost Software License, Version 1.0. (See
  7. // accompanying file LICENSE_1_0.txt or copy at
  8. // https://www.boost.org/LICENSE_1_0.txt)
  9. #include <boost/uuid/name_generator_md5.hpp>
  10. #include <boost/uuid/name_generator_sha1.hpp>
  11. namespace boost {
  12. namespace uuids {
  13. // Only provided for compatibility with 1.85 and earlier
  14. using name_generator = name_generator_sha1;
  15. // Only provided for compatibility with 1.85 and earlier
  16. using name_generator_latest = name_generator_sha1;
  17. } // uuids
  18. } // boost
  19. #endif // BOOST_UUID_NAME_GENERATOR_HPP_INCLUDED