The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
// 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