Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef Random_INCLUDE_ONCE
00033 #define Random_INCLUDE_ONCE
00034
00035 #include <vlCore/Object.hpp>
00036
00037 namespace vl
00038 {
00041 class VLCORE_EXPORT Random: public Object
00042 {
00043 VL_INSTRUMENT_CLASS(vl::Random, Object)
00044
00045 public:
00047 Random();
00048
00050 virtual ~Random();
00051
00056 virtual bool fillRandom(void* ptr, size_t bytes) const;
00057
00060 void fillRandomMersenneTwister(void* ptr, size_t bytes) const;
00061
00062 private:
00063 #if defined(_MSC_VER) || defined(__MINGW32__)
00064 void* hCryptProv;
00065 #elif defined(__GNUG__) && !defined(__MINGW32__)
00066 FILE* mDefURandom;
00067 #endif
00068 };
00069 }
00070
00071 #endif