All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
Loading...
Searching...
No Matches
VuforiaEngine.h File Reference

Umbrella header for the Vuforia Engine. More...

Macros

#define VU_MAKE_VERSION(major, minor, patch)    (((major) << 22) | ((minor) << 12) | (patch))
 Utility macro to support the comparison of Vuforia Engine versions.
 
#define VU_VERSION_MAJOR   10
 Vuforia Engine major version.
 
#define VU_VERSION_MINOR   29
 Vuforia Engine minor version.
 
#define VU_VERSION_PATCH   6
 Vuforia Engine patch version.
 
#define VU_VERSION   VU_MAKE_VERSION(VU_VERSION_MAJOR, VU_VERSION_MINOR, VU_VERSION_PATCH)
 Vuforia Engine version as a single integer.
 

Detailed Description

Umbrella header for the Vuforia Engine.

Macro Definition Documentation

◆ VU_VERSION

Vuforia Engine version as a single integer.

Note
You can use the version-related macros for conditional code compilation, for example to build code only when the Engine version is greater than or equals to 10.8.0, use
#if VU_VERSION >= VU_MAKE_VERSION(10, 8, 0)
    // Vuforia Engine version-specific code
#endif