mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
17 lines
442 B
C++
17 lines
442 B
C++
#ifndef SPROUT_UUID_NAME_GENERATOR_HPP
|
|
#define SPROUT_UUID_NAME_GENERATOR_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/uuid/md5_name_generator.hpp>
|
|
#include <sprout/uuid/sha1_name_generator.hpp>
|
|
|
|
namespace sprout {
|
|
namespace uuids {
|
|
//
|
|
// name_generator
|
|
//
|
|
typedef sprout::uuids::sha1_name_generator name_generator;
|
|
} // namespace uuids
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_UUID_NAME_GENERATOR_HPP
|