extra files

This commit is contained in:
Max-Wilhelm Bruker 2010-09-15 21:49:13 +02:00
parent 7e9879c0ea
commit d52b00fbd8
7 changed files with 992 additions and 0 deletions

14
common/rng_sfmt.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef RNG_SFMT_H
#define RNG_SFMT_H
#include "rng_abstract.h"
class RNG_SFMT : public RNG_Abstract {
Q_OBJECT
public:
RNG_SFMT(QObject *parent = 0);
unsigned int getNumber(unsigned int min, unsigned int max);
};
#endif