version.h 636 B

123456789101112131415161718192021
  1. // Copyright (c) 2006-2018 Maxim Khizhinsky
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef CDSLIB_VERSION_H
  6. #define CDSLIB_VERSION_H
  7. // cds library version
  8. #define CDS_VERSION 0x020303
  9. #define CDS_VERSION_MAJOR ((CDS_VERSION & 0xFF0000)>> 16)
  10. #define CDS_VERSION_MINOR ((CDS_VERSION & 0x00FF00) >> 8)
  11. #define CDS_VERSION_PATCH (CDS_VERSION & 0x0000FF)
  12. // CDS_VERSION == CDS_VERSION_MAJOR '.' CDS_VERSION_MINOR '.' CDS_VERSION_PATCH
  13. #define CDS_VERSION_STRING "2.3.3"
  14. #endif // #ifndef CDSLIB_VERSION_H