diff options
Diffstat (limited to 'cpp/include/IceUtil/Random.h')
-rw-r--r-- | cpp/include/IceUtil/Random.h | 39 |
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 |