Struct InferenceEngine::Version¶
-
struct Version¶
Represents version information that describes plugins and the inference engine runtime library.
Public Members
-
ApiVersion apiVersion¶
An API version reflects the set of supported features.
-
const char *buildNumber¶
A null terminated string with build number.
-
const char *description¶
A null terminated description string.
-
struct ApiVersion¶
An API version reflects the set of supported features.
- Deprecated:
Use IE_VERSION_[MAJOR|MINOR|PATCH] definitions, buildNumber property
Public Functions
-
inline ApiVersion()¶
A default construtor.
-
inline ApiVersion(const ApiVersion &v)¶
A default construtor.
- Parameters
v – A version to copy
-
inline ApiVersion(int _major, int _minor)¶
A default construtor.
- Parameters
_major – A major version to copy
_minor – A minor version to copy
-
inline ApiVersion &operator=(const ApiVersion &other)¶
A copy operator.
- Parameters
other – An object to copy
- Returns
A copy
-
ApiVersion apiVersion¶