Version Information
versionString
-
inline std::string fluxEngine::versionString()
Get the version string for the currently loaded fluxEngine.
The string returned should not be parsed by the user, and the user should not make any assumptions based on the format of the string. It is purely for informational purposes, if the user of fluxEngine wants to show that string to the end-user, for example. If version-based checks are to be done, please use versionMajor() and versionMinor() instead.
This function can only fail if the allocation of a
std::string
fails, in which casestd::bad_alloc
will be thrown.- Returns:
The version string for the currently loaded fluxEngine
versionMajor
-
inline int fluxEngine::versionMajor() noexcept
Get the major version of the currently loaded fluxEngine.
This function will never fail.
- Returns:
The major version of fluxEngine
versionMinor
-
inline int fluxEngine::versionMinor() noexcept
Get the minor version of the currently loaded fluxEngine.
This function will never fail.
- Returns:
The minor version of fluxEngine