2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2011-10-25 09:16:27 +00:00
|
|
|
#ifndef SPROUT_UUID_NAME_GENERATOR_HPP
|
|
|
|
#define SPROUT_UUID_NAME_GENERATOR_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-08-08 13:27:06 +00:00
|
|
|
#include <sprout/uuid/md5_name_generator.hpp>
|
|
|
|
#include <sprout/uuid/sha1_name_generator.hpp>
|
2011-10-25 09:16:27 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace uuids {
|
|
|
|
//
|
|
|
|
// name_generator
|
|
|
|
//
|
2012-08-08 13:27:06 +00:00
|
|
|
typedef sprout::uuids::sha1_name_generator name_generator;
|
2011-10-25 09:16:27 +00:00
|
|
|
} // namespace uuids
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_UUID_NAME_GENERATOR_HPP
|