pollymc/launcher/BaseVersion.h

59 lines
1.5 KiB
C
Raw Normal View History

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-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.
*/
#pragma once
2013-10-06 04:43:40 +05:30
#include <memory>
#include <QString>
#include <QMetaType>
2013-02-15 10:10:00 +05:30
/*!
* An abstract base class for versions.
*/
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:
using Ptr = std::shared_ptr<BaseVersion>;
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
};
Q_DECLARE_METATYPE(BaseVersion::Ptr)