diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-03-23 13:01:10 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-03-23 13:01:10 +0000 |
commit | c230f9229580131d54675d91ddaa8c34591298b3 (patch) | |
tree | fc1246455cef949de09849fa51056aa961661a4d /cpp/src/IceUtil/UUID.cpp | |
parent | Added Random.cpp (diff) | |
download | ice-c230f9229580131d54675d91ddaa8c34591298b3.tar.bz2 ice-c230f9229580131d54675d91ddaa8c34591298b3.tar.xz ice-c230f9229580131d54675d91ddaa8c34591298b3.zip |
Fix
Diffstat (limited to 'cpp/src/IceUtil/UUID.cpp')
-rw-r--r-- | cpp/src/IceUtil/UUID.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cpp/src/IceUtil/UUID.cpp b/cpp/src/IceUtil/UUID.cpp index 169dcf32eef..ffe36ea57ab 100644 --- a/cpp/src/IceUtil/UUID.cpp +++ b/cpp/src/IceUtil/UUID.cpp @@ -22,6 +22,17 @@ using namespace std; +namespace IceUtil +{ + +// +// This method is defined in Random.cpp as a convenience for +// generateUUID. +// +void generateRandomAndGetPid(char*, int, char*); + +}; + // Helper char to hex functions // inline void halfByteToHex(unsigned char hb, char*& hexBuffer) |