summaryrefslogtreecommitdiff
path: root/cpp/include/IceUtil/Random.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-03-23 12:57:11 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-03-23 12:57:11 +0000
commit07ec4897c353261f24b53b7a48d0694e91fabc9e (patch)
tree21999efbc960b13bf6ddefa141be7e05dbd5a27d /cpp/include/IceUtil/Random.h
parentChanges for TAO 1.5 (diff)
downloadice-07ec4897c353261f24b53b7a48d0694e91fabc9e.tar.bz2
ice-07ec4897c353261f24b53b7a48d0694e91fabc9e.tar.xz
ice-07ec4897c353261f24b53b7a48d0694e91fabc9e.zip
Added Random.cpp
Diffstat (limited to 'cpp/include/IceUtil/Random.h')
-rw-r--r--cpp/include/IceUtil/Random.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/cpp/include/IceUtil/Random.h b/cpp/include/IceUtil/Random.h
new file mode 100644
index 00000000000..c2ef54889c5
--- /dev/null
+++ b/cpp/include/IceUtil/Random.h
@@ -0,0 +1,39 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#ifndef ICE_UTIL_RANDOM_H
+#define ICE_UTIL_RANDOM_H
+
+#include <IceUtil/Config.h>
+#include <IceUtil/Exception.h>
+
+namespace IceUtil
+{
+
+class ICE_UTIL_API RandomGeneratorException : public Exception
+{
+public:
+
+ RandomGeneratorException(const char*, int);
+ virtual const std::string ice_name() const;
+ virtual Exception* ice_clone() const;
+ virtual void ice_throw() const;
+
+private:
+
+ static const char* _name;
+};
+
+ICE_UTIL_API void generateRandom(char*, int);
+ICE_UTIL_API void generateRandomAndGetPid(char*, int, char*);
+ICE_UTIL_API int random(int);
+
+}
+
+#endif