 |
Carna Version 3.3.3
|
Loading...
Searching...
No Matches
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 3
61#define CARNA_PATCH_VERSION 3
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!" );