7zip/CPP/Common/Random.h
Igor Pavlov 5b39dc76f1 23.01
2023-12-17 14:59:19 +05:00

15 lines
193 B
C++

// Common/Random.h
#ifndef ZIP7_INC_COMMON_RANDOM_H
#define ZIP7_INC_COMMON_RANDOM_H
class CRandom
{
public:
void Init();
void Init(unsigned int seed);
int Generate() const;
};
#endif