Oboe
A library for creating real-time audio apps on Android
|
#include <Version.h>
Static Public Attributes | |
static constexpr uint8_t | Major = OBOE_VERSION_MAJOR |
static constexpr uint8_t | Minor = OBOE_VERSION_MINOR |
static constexpr uint16_t | Patch = OBOE_VERSION_PATCH |
static constexpr const char * | Text = OBOE_VERSION_TEXT |
static constexpr uint32_t | Number = OBOE_VERSION_NUMBER |
Oboe versioning object
This is incremented when we make breaking API changes. Based loosely on https://semver.org/.
This is incremented when we add backwards compatible functionality. Or set to zero when MAJOR is incremented.
Integer representation of the current Oboe library version. This will always increase when the version number changes so can be compared using integer comparison.
This is incremented when we make backwards compatible bug fixes. Or set to zero when MINOR is incremented.
Version string in the form MAJOR.MINOR.PATCH.