Simple class for handling app versions in Microsoft specific file and assembly version format. Format: Major.Minor.Build.Revision, where all parts are integer numbers. In case you use such version format without alphabetical symbols then it fits your needs. For example: "1.3.4573.1", "2.13.3735.0".
More...
|
| | MSVersion () |
| |
| | MSVersion (int major, int minor, char delimeter='.') |
| |
| | MSVersion (int major, int minor, int build, char delimeter='.') |
| |
| | MSVersion (int major, int minor, int build, int revision, char delimeter='.') |
| |
| | MSVersion (const std::string &version, char delimeter='.') |
| |
| int | buildVersion () const |
| |
| int | revisionVersion () const |
| |
| bool | hasBuildVersion () const |
| |
| bool | hasRevisionVersion () const |
| |
| void | setBuildVersion (int number) |
| |
| void | setRevisionVersion (int number) |
| |
| size_t | length () const override |
| |
| std::string | toString () const override |
| |
| int | compare (const VersionBase &baseVer) const override |
| |
| | VersionBase () |
| |
| | VersionBase (int major, int minor, char delimeter='.') |
| |
| virtual | ~VersionBase ()=default |
| |
| int | majorVersion () const |
| |
| int | minorVersion () const |
| |
| char | delimeter () const |
| |
| void | setDelimeter (char delimeter) |
| |
| size_t | size () const |
| |
| | operator std::string () const |
| |
| bool | operator== (const VersionBase &version) const |
| |
| bool | operator!= (const VersionBase &version) const |
| |
| bool | operator< (const VersionBase &version) const |
| |
| bool | operator> (const VersionBase &version) const |
| |
| bool | operator<= (const VersionBase &version) const |
| |
| bool | operator>= (const VersionBase &version) const |
| |
Simple class for handling app versions in Microsoft specific file and assembly version format. Format: Major.Minor.Build.Revision, where all parts are integer numbers. In case you use such version format without alphabetical symbols then it fits your needs. For example: "1.3.4573.1", "2.13.3735.0".
Definition at line 103 of file Version.h.