Go to the documentation of this file.
12 #ifndef VERSION_H_6014714286
13 #define VERSION_H_6014714286
39 #define CARNA_MAJOR_VERSION 3
50 #define CARNA_MINOR_VERSION 0
61 #define CARNA_PATCH_VERSION 1
77 #define CARNA_ASSERT_API_VERSION( expected_major_version, expected_minor_version, expected_patch_version ) \
79 expected_major_version == CARNA_MAJOR_VERSION && \
80 expected_minor_version == CARNA_MINOR_VERSION && \
81 expected_patch_version >= CARNA_PATCH_VERSION, \
82 "Incompatible Carna Version!" );
86 #endif // VERSION_H_6014714286