// 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 . // ---------------------------------------------------------------------------- #pragma once #include #include 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); // comparison 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; };