Qt Cryptographic Architecture
|
Go to the source code of this file.
Macros | |
#define | QCA_MAJOR_VERSION 2 |
#define | QCA_MINOR_VERSION 3 |
#define | QCA_PATCH_VERSION 8 |
#define | QCA_VERSION QCA_VERSION_CHECK(2, 3, 8) |
#define | QCA_VERSION_CHECK(major, minor, patch) ((major << 16) | (minor << 8) | (patch)) |
#define | QCA_VERSION_STR "2.3.8" |
Header file with QCA version.
#include <QtCrypto>
instead. #define QCA_MAJOR_VERSION 2 |
The major part of current QCA version.
#define QCA_MINOR_VERSION 3 |
The minor part of current QCA version.
#define QCA_PATCH_VERSION 8 |
The patch part of current QCA version.
#define QCA_VERSION_STR "2.3.8" |
The current version of QCA as string.
#define QCA_VERSION_CHECK | ( | major, | |
minor, | |||
patch | |||
) | ((major << 16) | (minor << 8) | (patch)) |
Can be used like #if (QCA_VERSION >= QCA_VERSION_CHECK(2, 0, 3))
major | part of the version |
minor | part of the version |
patch | part of the version |
#define QCA_VERSION QCA_VERSION_CHECK(2, 3, 8) |
The current version of QCA.
This provides you a compile time check of the QCA version.