version.junk 886 B

1234567891011121314151617181920212223242526
  1. // This file is part of OpenCV project.
  2. // It is subject to the license terms in the LICENSE file found in the top-level directory
  3. // of this distribution and at http://opencv.org/license.html.
  4. #ifndef OPENCV_VERSION_HPP
  5. #define OPENCV_VERSION_HPP
  6. #define CV_VERSION_MAJOR 4
  7. #define CV_VERSION_MINOR 8
  8. #define CV_VERSION_REVISION 0
  9. #define CV_VERSION_STATUS ""
  10. #define CVAUX_STR_EXP(__A) #__A
  11. #define CVAUX_STR(__A) CVAUX_STR_EXP(__A)
  12. #define CVAUX_STRW_EXP(__A) L ## #__A
  13. #define CVAUX_STRW(__A) CVAUX_STRW_EXP(__A)
  14. #define CV_VERSION CVAUX_STR(CV_VERSION_MAJOR) "." CVAUX_STR(CV_VERSION_MINOR) "." CVAUX_STR(CV_VERSION_REVISION) CV_VERSION_STATUS
  15. /* old style version constants*/
  16. #define CV_MAJOR_VERSION CV_VERSION_MAJOR
  17. #define CV_MINOR_VERSION CV_VERSION_MINOR
  18. #define CV_SUBMINOR_VERSION CV_VERSION_REVISION
  19. #endif // OPENCV_VERSION_HPP