 |
LibCarna Version 3.4.0
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
15#ifndef VERSION_H_6014714286
16#define VERSION_H_6014714286
35#define LIBCARNA_MAJOR_VERSION 3
46#define LIBCARNA_MINOR_VERSION 4
57#define LIBCARNA_PATCH_VERSION 0
73#define LIBCARNA_ASSERT_API_VERSION( expected_major_version, expected_minor_version, expected_patch_version ) \
75 expected_major_version == LIBCARNA_MAJOR_VERSION && \
76 expected_minor_version == LIBCARNA_MINOR_VERSION && \
77 expected_patch_version >= LIBCARNA_PATCH_VERSION, \
78 "Incompatible Carna Version!" );