summaryrefslogtreecommitdiffstats
path: root/other-licenses/7zstub/src/Common/Random.h
blob: f6fe5c4ef47bbf07a74080155e98b445eecedea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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