/* */ #ifndef _D_RANDOMIZER_H_ #define _D_RANDOMIZER_H_ #include "common.h" #include "SharedHandle.h" namespace aria2 { class Randomizer { public: virtual ~Randomizer() {} virtual long int getRandomNumber() = 0; virtual long int getMaxRandomNumber() = 0; /** * Returns random number in [0, to). */ virtual long int getRandomNumber(long int to) = 0; }; typedef SharedHandle RandomizerHandle; } // namespace aria2 #endif // _D_RANDOMIZER_H_