test_generator.hpp 290 B

123456789101112131415
  1. /*
  2. * a rather innocuous-looking function which is actually
  3. * part of <cstdlib>, so we can be reasonably sure its
  4. * definition will be found
  5. */
  6. #ifndef __OPENCV_MATLAB_TEST_GENERATOR_HPP_
  7. #define __OPENCV_MATLAB_TEST_GENERATOR_HPP_
  8. namespace cv {
  9. CV_EXPORTS_W int rand( );
  10. };
  11. #endif