Multi diag tools
|
Representation of a version of a library. More...
#include <LibraryVersion.h>
Public Member Functions | |
LibraryVersion ()=default | |
Construct a null version. | |
LibraryVersion (qint8 versionMajor, qint8 versionMinor=-1, qint8 versionPatch=-1) | |
Construct a library version. More... | |
LibraryVersion (const QString &version) | |
Construct a library version from a version string. More... | |
LibraryVersion (const QStringRef &version) | |
Construct a library version from a version string. More... | |
LibraryVersion (const LibraryVersion &)=default | |
Copy construct a version from a other. | |
LibraryVersion & | operator= (const LibraryVersion &)=default |
Copy assign to this version from a other. | |
LibraryVersion (LibraryVersion &&)=default | |
Move construct a version from a other. | |
LibraryVersion & | operator= (LibraryVersion &&)=default |
Move assign to this version from a other. | |
bool | isNull () const |
Check is this library version is null. | |
qint8 | versionMajor () const |
Get version major. | |
qint8 | versionMinor () const |
Get version minor. | |
qint8 | versionPatch () const |
Get version patch. | |
QString | toString () const |
Get a string representation of this library version. | |
Representation of a version of a library.
Definition at line 33 of file LibraryVersion.h.
Mdt::DeployUtils::LibraryVersion::LibraryVersion | ( | qint8 | versionMajor, |
qint8 | versionMinor = -1 , |
||
qint8 | versionPatch = -1 |
||
) |
Construct a library version.
Definition at line 31 of file LibraryVersion.cpp.
|
inline |
Construct a library version from a version string.
If version does not represent a valid version string, this will be a null library version.
Definition at line 55 of file LibraryVersion.h.
Mdt::DeployUtils::LibraryVersion::LibraryVersion | ( | const QStringRef & | version | ) |
Construct a library version from a version string.
Definition at line 40 of file LibraryVersion.cpp.