mirror of
https://github.com/ip7z/7zip.git
synced 2025-12-06 07:12:00 +01:00
15 lines
179 B
C
15 lines
179 B
C
|
|
// Common/Random.h
|
||
|
|
|
||
|
|
#ifndef __COMMON_RANDOM_H
|
||
|
|
#define __COMMON_RANDOM_H
|
||
|
|
|
||
|
|
class CRandom
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
void Init();
|
||
|
|
void Init(unsigned int seed);
|
||
|
|
int Generate() const;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|