7zip/CPP/Common/Random.h

15 lines
193 B
C
Raw Normal View History

2021-12-27 01:00:00 +01:00
// Common/Random.h
2023-06-21 02:00:00 +02:00
#ifndef ZIP7_INC_COMMON_RANDOM_H
#define ZIP7_INC_COMMON_RANDOM_H
2021-12-27 01:00:00 +01:00
class CRandom
{
public:
void Init();
void Init(unsigned int seed);
int Generate() const;
};
#endif