1
2
3
4
5
6 #ifndef SOULNG_UTIL_UUID_INCLUDED
7 #define SOULNG_UTIL_UUID_INCLUDED
8 #include <soulng/util/UtilApi.hpp>
9 #include <boost/uuid/uuid.hpp>
10 #include <stdint.h>
11
12 namespace soulng { namespace util {
13
14 void UuidToInts(const boost::uuids::uuid& id, uint64_t& int1, uint64_t& int2);
15 void IntsToUuid(uint64_t int1, uint64_t int2, boost::uuids::uuid& id);
16
17 } }
18
19 #endif // SOULNG_UTIL_UUID_INCLUDED