mirror of https://github.com/nostar/urfd.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.1 KiB
93 lines
2.1 KiB
// Copyright © 2023 Thomas A. Early N7TAE.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
// This file is part of m17ref.
|
|
//
|
|
// m17ref is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// m17ref is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// with this software. If not, see <http://www.gnu.org/licenses/>.
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#include "Version.h"
|
|
|
|
CVersion::CVersion() : version(0) {}
|
|
|
|
CVersion::CVersion(uint8_t maj, uint8_t min, uint8_t rev)
|
|
{
|
|
Set(maj, min, rev);
|
|
}
|
|
|
|
int CVersion::GetMajor(void) const
|
|
{
|
|
return version / 0x10000;
|
|
}
|
|
|
|
int CVersion::GetMinor(void) const
|
|
{
|
|
return version / 0x100 % 0x100;
|
|
}
|
|
|
|
int CVersion::GetRevision(void) const
|
|
{
|
|
return version % 0x100;
|
|
}
|
|
|
|
int CVersion::GetVersion(void) const
|
|
{
|
|
return version;
|
|
}
|
|
|
|
void CVersion::Set(uint8_t maj, uint8_t min, uint8_t rev)
|
|
{
|
|
version = 0x10000*maj + 0x100*min + rev;
|
|
}
|
|
|
|
bool CVersion::operator ==(const CVersion &v) const
|
|
{
|
|
return v.version == version;
|
|
};
|
|
|
|
bool CVersion::operator !=(const CVersion &v) const
|
|
{
|
|
return v.version != version;
|
|
};
|
|
|
|
bool CVersion::operator >=(const CVersion &v) const
|
|
{
|
|
return v.version >= version;
|
|
}
|
|
|
|
bool CVersion::operator <=(const CVersion &v) const
|
|
{
|
|
return v.version <= version;
|
|
}
|
|
|
|
bool CVersion::operator >(const CVersion &v) const
|
|
{
|
|
return v.version > version;
|
|
}
|
|
|
|
bool CVersion::operator <(const CVersion &v) const
|
|
{
|
|
return v.version < version;
|
|
}
|
|
|
|
// output
|
|
std::ostream &operator <<(std::ostream &os, const CVersion &v)
|
|
{
|
|
os << v.GetMajor() << '.' << v.GetMinor() << '.' << v.GetRevision();
|
|
#ifndef NO_DHT
|
|
os << "-dht";
|
|
#endif
|
|
return os;
|
|
};
|