2013-11-03 14:46:39 +00:00
|
|
|
#ifndef RANDOMGENERATOR_H
|
|
|
|
#define RANDOMGENERATOR_H
|
|
|
|
|
|
|
|
#include "system_global.h"
|
2013-11-19 11:16:33 +00:00
|
|
|
|
2013-11-03 14:46:39 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
namespace paysages {
|
|
|
|
namespace system {
|
|
|
|
|
2013-11-19 11:16:33 +00:00
|
|
|
class SYSTEMSHARED_EXPORT RandomGenerator
|
2013-11-03 14:46:39 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
RandomGenerator();
|
|
|
|
|
|
|
|
static inline double random()
|
|
|
|
{
|
|
|
|
return ((double)rand()) / (double)RAND_MAX;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // RANDOMGENERATOR_H
|