NS/dev/performance-3.0.5/source/stlport/test/regression/rand.h
2005-06-29 13:51:58 +00:00

18 lines
302 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