23 VersionId(
int version,
int release,
int revision,
int patch = 0);
26 static wxString
MakeString(
int version,
int release,
int revision,
int patch);
49 return VersionId { AUDACITY_VERSION, AUDACITY_RELEASE, AUDACITY_REVISION,
static VersionId CurrentBuildVersion()
Return version (VersionId) object with current Audacity build version.
A class, that supports base manipulation with version number.
bool operator!=(const VersionId &other)
bool operator==(const VersionId &other)
static VersionId ParseFromString(wxString &versionString)
Parse and return version object from version string like "1.2.3".
wxString GetString() const
Make string with version by MakeString() from instance values.
bool operator>(const VersionId &other)
VersionId()=default
Creates an zero version object.
bool operator<(const VersionId &other)
static wxString MakeString(int version, int release, int revision, int patch)
Creates version string like "1.2.3" by parameters.