Files
FC1/STLPORT/test/regression/rand.h
romkazvo 34d6c5d489 123
2023-08-07 19:29:24 +08:00

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