unimportant changes

This commit is contained in:
Max-Wilhelm Bruker 2009-06-10 21:17:24 +02:00
parent 4054afc759
commit 7f659573bc
21 changed files with 89 additions and 51 deletions

View file

@ -0,0 +1,13 @@
#ifndef ABSTRACTRNG_H
#define ABSTRACTRNG_H
#include <QObject>
class AbstractRNG : public QObject {
Q_OBJECT
public:
AbstractRNG(QObject *parent = 0) : QObject(parent) { }
virtual unsigned int getNumber(unsigned int min, unsigned int max) = 0;
};
#endif