summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/libiris/cutestuff/util/qrandom.h
blob: 92339fb092b618f7fc3f452be8d3dd1ea9821043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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