Move libcds 1.6.0 from SVN
[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        0x010600
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        "1.6.0"
16
17 #endif  // #ifndef __CDS_VERSION_H
18