This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/dm/stlport/test/regression/rand.h

19 lines
284 B
C++

#ifndef _rand_h
#define _rand_h
#include <cstdlib>
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
using namespace std;
#endif
class MyRandomGenerator
{
public:
unsigned long operator()(unsigned long n_)
{
return rand() % n_;
}
};
#endif // _rand_h