afe0188a31634d0da48b0e7e9f2ecfb8ec7490f0
[libcds.git] / cds / version.h
1 //$$CDS-header$$
2
3 #ifndef __CDS_VERSION_H
4 #define __CDS_VERSION_H
5
6 // cds library version
7
8 #define CDS_VERSION        0x020000
9
10 #define CDS_VERSION_MAJOR  ((CDS_VERSION & 0xFF0000)>> 16)
11 #define CDS_VERSION_MINOR  ((CDS_VERSION & 0x00FF00) >> 8)
12 #define CDS_VERSION_PATCH  (CDS_VERSION & 0x0000FF)
13
14 // CDS_VERSION == CDS_VERSION_MAJOR '.' CDS_VERSION_MINOR '.' CDS_VERSION_PATCH
15 #define CDS_VERSION_STRING        "2.0.0"
16
17 #endif  // #ifndef __CDS_VERSION_H
18