Version#
Fully qualified name: omni::ext::Version
Defined in omni/ext/IExtensions.h
-
struct Version#
Extension version struct.
Follows Semantic Versioning 2.0. https://semver.org/
Public Members
-
int32_t major#
The major version (i.e. the ‘x’ in x.y.z), incremented for incompatible changes.
-
int32_t minor#
The minor version (i.e. the ‘y’ in x.y.z), for backwards compatible functionality.
-
int32_t patch#
The patch version (i.e. the ‘z’ in x.y.z), for backwards compatible bug fixes.
-
const char *prerelease = nullptr#
The pre-release string.
-
const char *build = nullptr#
The build string.
-
int32_t major#