You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
197 B
C
15 lines
197 B
C
15 years ago
|
#ifndef CS_QRANDOM_H
|
||
|
#define CS_QRANDOM_H
|
||
|
|
||
|
#include<qcstring.h>
|
||
|
|
||
|
class QRandom
|
||
|
{
|
||
|
public:
|
||
|
static uchar randomChar();
|
||
|
static uint randomInt();
|
||
|
static QByteArray randomArray(uint size);
|
||
|
};
|
||
|
|
||
|
#endif
|