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

13
servatrice/src/rng_qt.h Normal file
View file

@ -0,0 +1,13 @@
#ifndef RNG_QT_H
#define RNG_QT_H
#include "abstractrng.h"
class RNG_Qt : public AbstractRNG {
Q_OBJECT
public:
RNG_Qt(QObject *parent = 0);
unsigned int getNumber(unsigned int min, unsigned int max);
};
#endif