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.

57 lines
1.6 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/>.
// ----------------------------------------------------------------------------
#pragma once
#include <cstdint>
#include <iostream>
class CVersion
{
public:
// constructors
CVersion();
CVersion(uint8_t maj, uint8_t min, uint8_t rev);
// get
int GetMajor(void) const;
int GetMinor(void) const;
int GetRevision(void) const;
int GetVersion(void) const;
// set
void Set(uint8_t, uint8_t, uint8_t);
// comparaison operators
bool operator ==(const CVersion &v) const;
bool operator !=(const CVersion &v) const;
bool operator >=(const CVersion &v) const;
bool operator <=(const CVersion &v) const;
bool operator >(const CVersion &v) const;
bool operator <(const CVersion &v) const;
// output
friend std::ostream &operator <<(std::ostream &os, const CVersion &v);
protected:
// data
int version;
};

Powered by TurnKey Linux.