2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-02-15 10:10:00 +05:30
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-11-04 07:23:05 +05:30
|
|
|
*
|
2013-02-15 10:10:00 +05:30
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
#pragma once
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
#include <memory>
|
2014-04-23 05:57:40 +05:30
|
|
|
#include <QString>
|
|
|
|
#include <QMetaType>
|
2013-02-15 10:10:00 +05:30
|
|
|
|
2013-05-04 01:11:37 +05:30
|
|
|
/*!
|
2013-08-11 22:28:24 +05:30
|
|
|
* An abstract base class for versions.
|
2013-05-04 01:11:37 +05:30
|
|
|
*/
|
2015-09-26 07:34:09 +05:30
|
|
|
class BaseVersion
|
2013-02-15 10:10:00 +05:30
|
|
|
{
|
2015-09-26 07:34:09 +05:30
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual ~BaseVersion() {}
|
|
|
|
/*!
|
|
|
|
* A string used to identify this version in config files.
|
|
|
|
* This should be unique within the version list or shenanigans will occur.
|
|
|
|
*/
|
|
|
|
virtual QString descriptor() = 0;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* The name of this version as it is displayed to the user.
|
|
|
|
* For example: "1.5.1"
|
|
|
|
*/
|
|
|
|
virtual QString name() = 0;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* This should return a string that describes
|
|
|
|
* the kind of version this is (Stable, Beta, Snapshot, whatever)
|
|
|
|
*/
|
|
|
|
virtual QString typeString() const = 0;
|
|
|
|
|
|
|
|
virtual bool operator<(BaseVersion &a)
|
|
|
|
{
|
|
|
|
return name() < a.name();
|
|
|
|
};
|
|
|
|
virtual bool operator>(BaseVersion &a)
|
|
|
|
{
|
|
|
|
return name() > a.name();
|
|
|
|
};
|
2013-02-15 10:10:00 +05:30
|
|
|
};
|
2013-08-11 22:28:24 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
typedef std::shared_ptr<BaseVersion> BaseVersionPtr;
|
2013-08-11 22:28:24 +05:30
|
|
|
|
2014-04-23 05:57:40 +05:30
|
|
|
Q_DECLARE_METATYPE(BaseVersionPtr)
|