Files
easy7zip/CPP/Common/Random.h
Igor Pavlov f08f4dcc3c 9.34
2016-05-28 00:16:51 +01:00

17 lines
181 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