home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stl2vac.zip / STLport-4_5_3.zip / STLport-4.5.3 / test / regression / rand.h < prev    next >
C/C++ Source or Header  |  2001-05-18  |  284b  |  19 lines

  1. #ifndef _rand_h
  2. #define _rand_h
  3. #include <cstdlib>
  4.  
  5. #if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
  6. using namespace std;
  7. #endif
  8.  
  9. class MyRandomGenerator
  10. {
  11.   public:
  12.     unsigned long operator()(unsigned long n_)
  13.       {
  14.       return rand() % n_;
  15.       }
  16. };
  17.  
  18. #endif // _rand_h
  19.